k4compiler 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1898) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +20 -0
  3. data/.gitmodules +3 -0
  4. data/.rspec +2 -0
  5. data/Gemfile +4 -0
  6. data/Guardfile +8 -0
  7. data/LICENSE.txt +22 -0
  8. data/README.md +29 -0
  9. data/Rakefile +1 -0
  10. data/k4compiler.gemspec +50 -0
  11. data/lib/k4compiler.rb +26 -0
  12. data/lib/k4compiler/compiler.rb +41 -0
  13. data/lib/k4compiler/compiler/base.rb +24 -0
  14. data/lib/k4compiler/compiler/closure.rb +96 -0
  15. data/lib/k4compiler/compiler/markdown.rb +78 -0
  16. data/lib/k4compiler/compiler/scss.rb +31 -0
  17. data/lib/k4compiler/config.rb +59 -0
  18. data/lib/k4compiler/version.rb +3 -0
  19. data/spec/k4compiler/compiler/base_spec.rb +40 -0
  20. data/spec/k4compiler/compiler/closure/compiled-src/hello-with-closure-compiled-script.js +18317 -0
  21. data/spec/k4compiler/compiler/closure/src/hello-compiled-script.js +15 -0
  22. data/spec/k4compiler/compiler/closure/src/hello-with-closure.js +15 -0
  23. data/spec/k4compiler/compiler/closure/src/hello.js +15 -0
  24. data/spec/k4compiler/compiler/closure_spec.rb +159 -0
  25. data/spec/k4compiler/compiler/markdown_spec.rb +153 -0
  26. data/spec/k4compiler/compiler/scss/_body.scss +5 -0
  27. data/spec/k4compiler/compiler/scss/sample.scss +9 -0
  28. data/spec/k4compiler/compiler/scss_spec.rb +70 -0
  29. data/spec/k4compiler/compiler_spec.rb +75 -0
  30. data/spec/k4compiler/config_spec.rb +116 -0
  31. data/spec/k4compiler_spec.rb +17 -0
  32. data/spec/spec_helper.rb +8 -0
  33. data/third_party/.gitkeep +1 -0
  34. data/third_party/closure-compiler-20130603/COPYING +202 -0
  35. data/third_party/closure-compiler-20130603/README +292 -0
  36. data/third_party/closure-compiler-20130603/compiler.jar +0 -0
  37. data/third_party/closure-library/.gitignore +12 -0
  38. data/third_party/closure-library/AUTHORS +17 -0
  39. data/third_party/closure-library/CONTRIBUTING +5 -0
  40. data/third_party/closure-library/LICENSE +176 -0
  41. data/third_party/closure-library/README +6 -0
  42. data/third_party/closure-library/all_tests.html +113 -0
  43. data/third_party/closure-library/alltests.js +16 -0
  44. data/third_party/closure-library/closure/bin/build/closurebuilder.py +262 -0
  45. data/third_party/closure-library/closure/bin/build/depstree.py +189 -0
  46. data/third_party/closure-library/closure/bin/build/depstree_test.py +127 -0
  47. data/third_party/closure-library/closure/bin/build/depswriter.py +202 -0
  48. data/third_party/closure-library/closure/bin/build/jscompiler.py +135 -0
  49. data/third_party/closure-library/closure/bin/build/jscompiler_test.py +120 -0
  50. data/third_party/closure-library/closure/bin/build/source.py +121 -0
  51. data/third_party/closure-library/closure/bin/build/source_test.py +134 -0
  52. data/third_party/closure-library/closure/bin/build/treescan.py +78 -0
  53. data/third_party/closure-library/closure/bin/calcdeps.py +590 -0
  54. data/third_party/closure-library/closure/bin/labs/code/generate_jsdoc.py +171 -0
  55. data/third_party/closure-library/closure/bin/labs/code/generate_jsdoc_test.py +167 -0
  56. data/third_party/closure-library/closure/bin/labs/code/run_py_tests.sh +28 -0
  57. data/third_party/closure-library/closure/bin/scopify.py +211 -0
  58. data/third_party/closure-library/closure/css/inlay/g-base.css +82 -0
  59. data/third_party/closure-library/closure/css/inlay/g-fixed.css +173 -0
  60. data/third_party/closure-library/closure/css/inlay/g-ratio.css +253 -0
  61. data/third_party/closure-library/closure/goog/a11y/aria/announcer.js +108 -0
  62. data/third_party/closure-library/closure/goog/a11y/aria/announcer_test.html +97 -0
  63. data/third_party/closure-library/closure/goog/a11y/aria/aria.js +362 -0
  64. data/third_party/closure-library/closure/goog/a11y/aria/aria_test.html +263 -0
  65. data/third_party/closure-library/closure/goog/a11y/aria/attributes.js +389 -0
  66. data/third_party/closure-library/closure/goog/a11y/aria/datatables.js +68 -0
  67. data/third_party/closure-library/closure/goog/a11y/aria/roles.js +216 -0
  68. data/third_party/closure-library/closure/goog/array/array.js +1507 -0
  69. data/third_party/closure-library/closure/goog/array/array_test.html +1674 -0
  70. data/third_party/closure-library/closure/goog/asserts/asserts.js +293 -0
  71. data/third_party/closure-library/closure/goog/asserts/asserts_test.html +178 -0
  72. data/third_party/closure-library/closure/goog/async/animationdelay.js +270 -0
  73. data/third_party/closure-library/closure/goog/async/animationdelay_test.html +93 -0
  74. data/third_party/closure-library/closure/goog/async/conditionaldelay.js +235 -0
  75. data/third_party/closure-library/closure/goog/async/conditionaldelay_test.html +227 -0
  76. data/third_party/closure-library/closure/goog/async/delay.js +177 -0
  77. data/third_party/closure-library/closure/goog/async/delay_test.html +148 -0
  78. data/third_party/closure-library/closure/goog/async/nexttick.js +174 -0
  79. data/third_party/closure-library/closure/goog/async/nexttick_test.html +137 -0
  80. data/third_party/closure-library/closure/goog/async/throttle.js +189 -0
  81. data/third_party/closure-library/closure/goog/async/throttle_test.html +102 -0
  82. data/third_party/closure-library/closure/goog/base.js +1593 -0
  83. data/third_party/closure-library/closure/goog/base_test.html +1206 -0
  84. data/third_party/closure-library/closure/goog/bootstrap/nodejs.js +91 -0
  85. data/third_party/closure-library/closure/goog/bootstrap/webworkers.js +37 -0
  86. data/third_party/closure-library/closure/goog/color/alpha.js +467 -0
  87. data/third_party/closure-library/closure/goog/color/alpha_test.html +301 -0
  88. data/third_party/closure-library/closure/goog/color/color.js +773 -0
  89. data/third_party/closure-library/closure/goog/color/color_test.html +661 -0
  90. data/third_party/closure-library/closure/goog/color/names.js +176 -0
  91. data/third_party/closure-library/closure/goog/crypt/aes.js +1027 -0
  92. data/third_party/closure-library/closure/goog/crypt/aes_test.html +593 -0
  93. data/third_party/closure-library/closure/goog/crypt/arc4.js +162 -0
  94. data/third_party/closure-library/closure/goog/crypt/arc4_test.html +63 -0
  95. data/third_party/closure-library/closure/goog/crypt/base64.js +272 -0
  96. data/third_party/closure-library/closure/goog/crypt/base64_test.html +117 -0
  97. data/third_party/closure-library/closure/goog/crypt/basen.js +242 -0
  98. data/third_party/closure-library/closure/goog/crypt/basen_test.html +167 -0
  99. data/third_party/closure-library/closure/goog/crypt/blobhasher.js +284 -0
  100. data/third_party/closure-library/closure/goog/crypt/blobhasher_test.html +385 -0
  101. data/third_party/closure-library/closure/goog/crypt/blockcipher.js +52 -0
  102. data/third_party/closure-library/closure/goog/crypt/cbc.js +150 -0
  103. data/third_party/closure-library/closure/goog/crypt/cbc_test.html +18 -0
  104. data/third_party/closure-library/closure/goog/crypt/cbc_test.js +100 -0
  105. data/third_party/closure-library/closure/goog/crypt/crypt.js +155 -0
  106. data/third_party/closure-library/closure/goog/crypt/crypt_perf.html +85 -0
  107. data/third_party/closure-library/closure/goog/crypt/crypt_test.html +98 -0
  108. data/third_party/closure-library/closure/goog/crypt/hash.js +62 -0
  109. data/third_party/closure-library/closure/goog/crypt/hash32.js +184 -0
  110. data/third_party/closure-library/closure/goog/crypt/hash32_test.html +287 -0
  111. data/third_party/closure-library/closure/goog/crypt/hashtester.js +243 -0
  112. data/third_party/closure-library/closure/goog/crypt/hmac.js +162 -0
  113. data/third_party/closure-library/closure/goog/crypt/hmac_test.html +113 -0
  114. data/third_party/closure-library/closure/goog/crypt/md5.js +429 -0
  115. data/third_party/closure-library/closure/goog/crypt/md5_perf.html +39 -0
  116. data/third_party/closure-library/closure/goog/crypt/md5_test.html +152 -0
  117. data/third_party/closure-library/closure/goog/crypt/pbkdf2.js +127 -0
  118. data/third_party/closure-library/closure/goog/crypt/pbkdf2_test.html +68 -0
  119. data/third_party/closure-library/closure/goog/crypt/sha1.js +275 -0
  120. data/third_party/closure-library/closure/goog/crypt/sha1_perf.html +40 -0
  121. data/third_party/closure-library/closure/goog/crypt/sha1_test.html +79 -0
  122. data/third_party/closure-library/closure/goog/crypt/sha2.js +275 -0
  123. data/third_party/closure-library/closure/goog/crypt/sha224.js +53 -0
  124. data/third_party/closure-library/closure/goog/crypt/sha224_perf.html +40 -0
  125. data/third_party/closure-library/closure/goog/crypt/sha224_test.html +57 -0
  126. data/third_party/closure-library/closure/goog/crypt/sha256.js +53 -0
  127. data/third_party/closure-library/closure/goog/crypt/sha256_perf.html +40 -0
  128. data/third_party/closure-library/closure/goog/crypt/sha256_test.html +66 -0
  129. data/third_party/closure-library/closure/goog/css/autocomplete.css +43 -0
  130. data/third_party/closure-library/closure/goog/css/bubble.css +84 -0
  131. data/third_party/closure-library/closure/goog/css/button.css +38 -0
  132. data/third_party/closure-library/closure/goog/css/charpicker.css +206 -0
  133. data/third_party/closure-library/closure/goog/css/checkbox.css +38 -0
  134. data/third_party/closure-library/closure/goog/css/colormenubutton.css +25 -0
  135. data/third_party/closure-library/closure/goog/css/colorpalette.css +54 -0
  136. data/third_party/closure-library/closure/goog/css/colorpicker-simplegrid.css +49 -0
  137. data/third_party/closure-library/closure/goog/css/combobox.css +54 -0
  138. data/third_party/closure-library/closure/goog/css/common.css +41 -0
  139. data/third_party/closure-library/closure/goog/css/css3button.css +77 -0
  140. data/third_party/closure-library/closure/goog/css/css3menubutton.css +23 -0
  141. data/third_party/closure-library/closure/goog/css/custombutton.css +164 -0
  142. data/third_party/closure-library/closure/goog/css/datepicker.css +148 -0
  143. data/third_party/closure-library/closure/goog/css/dialog.css +72 -0
  144. data/third_party/closure-library/closure/goog/css/dimensionpicker.css +47 -0
  145. data/third_party/closure-library/closure/goog/css/dragdropdetector.css +48 -0
  146. data/third_party/closure-library/closure/goog/css/editor/bubble.css +73 -0
  147. data/third_party/closure-library/closure/goog/css/editor/dialog.css +66 -0
  148. data/third_party/closure-library/closure/goog/css/editor/equationeditor.css +113 -0
  149. data/third_party/closure-library/closure/goog/css/editor/linkdialog.css +36 -0
  150. data/third_party/closure-library/closure/goog/css/editortoolbar.css +225 -0
  151. data/third_party/closure-library/closure/goog/css/filteredmenu.css +30 -0
  152. data/third_party/closure-library/closure/goog/css/filterobservingmenuitem.css +25 -0
  153. data/third_party/closure-library/closure/goog/css/flatbutton.css +64 -0
  154. data/third_party/closure-library/closure/goog/css/flatmenubutton.css +63 -0
  155. data/third_party/closure-library/closure/goog/css/hovercard.css +51 -0
  156. data/third_party/closure-library/closure/goog/css/hsvapalette.css +231 -0
  157. data/third_party/closure-library/closure/goog/css/hsvpalette.css +179 -0
  158. data/third_party/closure-library/closure/goog/css/imagelessbutton.css +160 -0
  159. data/third_party/closure-library/closure/goog/css/imagelessmenubutton.css +23 -0
  160. data/third_party/closure-library/closure/goog/css/inputdatepicker.css +12 -0
  161. data/third_party/closure-library/closure/goog/css/linkbutton.css +26 -0
  162. data/third_party/closure-library/closure/goog/css/menu.css +27 -0
  163. data/third_party/closure-library/closure/goog/css/menubar.css +57 -0
  164. data/third_party/closure-library/closure/goog/css/menubutton.css +169 -0
  165. data/third_party/closure-library/closure/goog/css/menuitem.css +148 -0
  166. data/third_party/closure-library/closure/goog/css/menuseparator.css +19 -0
  167. data/third_party/closure-library/closure/goog/css/multitestrunner.css +121 -0
  168. data/third_party/closure-library/closure/goog/css/offline.css +147 -0
  169. data/third_party/closure-library/closure/goog/css/palette.css +36 -0
  170. data/third_party/closure-library/closure/goog/css/popupdatepicker.css +17 -0
  171. data/third_party/closure-library/closure/goog/css/roundedpanel.css +29 -0
  172. data/third_party/closure-library/closure/goog/css/roundedtab.css +158 -0
  173. data/third_party/closure-library/closure/goog/css/submenu.css +38 -0
  174. data/third_party/closure-library/closure/goog/css/tab.css +105 -0
  175. data/third_party/closure-library/closure/goog/css/tabbar.css +52 -0
  176. data/third_party/closure-library/closure/goog/css/tablesorter.css +14 -0
  177. data/third_party/closure-library/closure/goog/css/toolbar.css +400 -0
  178. data/third_party/closure-library/closure/goog/css/tooltip.css +14 -0
  179. data/third_party/closure-library/closure/goog/css/tree.css +146 -0
  180. data/third_party/closure-library/closure/goog/css/tristatemenuitem.css +43 -0
  181. data/third_party/closure-library/closure/goog/cssom/cssom.js +449 -0
  182. data/third_party/closure-library/closure/goog/cssom/cssom_test.html +343 -0
  183. data/third_party/closure-library/closure/goog/cssom/cssom_test_import_1.css +11 -0
  184. data/third_party/closure-library/closure/goog/cssom/cssom_test_import_2.css +10 -0
  185. data/third_party/closure-library/closure/goog/cssom/cssom_test_link_1.css +10 -0
  186. data/third_party/closure-library/closure/goog/cssom/iframe/style.js +1023 -0
  187. data/third_party/closure-library/closure/goog/cssom/iframe/style_test.html +391 -0
  188. data/third_party/closure-library/closure/goog/cssom/iframe/style_test_import.css +10 -0
  189. data/third_party/closure-library/closure/goog/datasource/datamanager.js +559 -0
  190. data/third_party/closure-library/closure/goog/datasource/datasource.js +656 -0
  191. data/third_party/closure-library/closure/goog/datasource/datasource_test.html +265 -0
  192. data/third_party/closure-library/closure/goog/datasource/expr.js +544 -0
  193. data/third_party/closure-library/closure/goog/datasource/expr_test.html +97 -0
  194. data/third_party/closure-library/closure/goog/datasource/fastdatanode.js +811 -0
  195. data/third_party/closure-library/closure/goog/datasource/fastdatanode_test.html +254 -0
  196. data/third_party/closure-library/closure/goog/datasource/jsdatasource.js +460 -0
  197. data/third_party/closure-library/closure/goog/datasource/jsondatasource.js +148 -0
  198. data/third_party/closure-library/closure/goog/datasource/jsxmlhttpdatasource.js +195 -0
  199. data/third_party/closure-library/closure/goog/datasource/jsxmlhttpdatasource_test.html +94 -0
  200. data/third_party/closure-library/closure/goog/datasource/xmldatasource.js +415 -0
  201. data/third_party/closure-library/closure/goog/date/date.js +1718 -0
  202. data/third_party/closure-library/closure/goog/date/date_test.html +1392 -0
  203. data/third_party/closure-library/closure/goog/date/datelike.js +27 -0
  204. data/third_party/closure-library/closure/goog/date/daterange.js +413 -0
  205. data/third_party/closure-library/closure/goog/date/daterange_test.html +253 -0
  206. data/third_party/closure-library/closure/goog/date/relative.js +465 -0
  207. data/third_party/closure-library/closure/goog/date/relative_test.html +267 -0
  208. data/third_party/closure-library/closure/goog/date/utcdatetime.js +179 -0
  209. data/third_party/closure-library/closure/goog/date/utcdatetime_test.html +124 -0
  210. data/third_party/closure-library/closure/goog/db/cursor.js +214 -0
  211. data/third_party/closure-library/closure/goog/db/db.js +182 -0
  212. data/third_party/closure-library/closure/goog/db/db_test.html +1657 -0
  213. data/third_party/closure-library/closure/goog/db/error.js +359 -0
  214. data/third_party/closure-library/closure/goog/db/index.js +245 -0
  215. data/third_party/closure-library/closure/goog/db/indexeddb.js +337 -0
  216. data/third_party/closure-library/closure/goog/db/keyrange.js +117 -0
  217. data/third_party/closure-library/closure/goog/db/objectstore.js +399 -0
  218. data/third_party/closure-library/closure/goog/db/old_db_test.html +1244 -0
  219. data/third_party/closure-library/closure/goog/db/transaction.js +218 -0
  220. data/third_party/closure-library/closure/goog/debug/console.js +207 -0
  221. data/third_party/closure-library/closure/goog/debug/console_test.html +195 -0
  222. data/third_party/closure-library/closure/goog/debug/debug.js +501 -0
  223. data/third_party/closure-library/closure/goog/debug/debug_test.html +68 -0
  224. data/third_party/closure-library/closure/goog/debug/debugwindow.js +615 -0
  225. data/third_party/closure-library/closure/goog/debug/debugwindow_test.html +29 -0
  226. data/third_party/closure-library/closure/goog/debug/devcss/devcss.js +444 -0
  227. data/third_party/closure-library/closure/goog/debug/devcss/devcss_test.html +365 -0
  228. data/third_party/closure-library/closure/goog/debug/devcss/devcssrunner.js +26 -0
  229. data/third_party/closure-library/closure/goog/debug/divconsole.js +141 -0
  230. data/third_party/closure-library/closure/goog/debug/enhanceerror_test.html +138 -0
  231. data/third_party/closure-library/closure/goog/debug/entrypointregistry.js +158 -0
  232. data/third_party/closure-library/closure/goog/debug/entrypointregistry_test.html +87 -0
  233. data/third_party/closure-library/closure/goog/debug/error.js +51 -0
  234. data/third_party/closure-library/closure/goog/debug/error_test.html +101 -0
  235. data/third_party/closure-library/closure/goog/debug/errorhandler.js +363 -0
  236. data/third_party/closure-library/closure/goog/debug/errorhandler_async_test.html +112 -0
  237. data/third_party/closure-library/closure/goog/debug/errorhandler_test.html +292 -0
  238. data/third_party/closure-library/closure/goog/debug/errorhandlerweakdep.js +38 -0
  239. data/third_party/closure-library/closure/goog/debug/errorreporter.js +376 -0
  240. data/third_party/closure-library/closure/goog/debug/errorreporter_test.html +351 -0
  241. data/third_party/closure-library/closure/goog/debug/fancywindow.js +362 -0
  242. data/third_party/closure-library/closure/goog/debug/formatter.js +316 -0
  243. data/third_party/closure-library/closure/goog/debug/fpsdisplay.js +162 -0
  244. data/third_party/closure-library/closure/goog/debug/fpsdisplay_test.html +53 -0
  245. data/third_party/closure-library/closure/goog/debug/gcdiagnostics.js +143 -0
  246. data/third_party/closure-library/closure/goog/debug/logbuffer.js +147 -0
  247. data/third_party/closure-library/closure/goog/debug/logbuffer_test.html +105 -0
  248. data/third_party/closure-library/closure/goog/debug/logger.js +853 -0
  249. data/third_party/closure-library/closure/goog/debug/logger_test.html +208 -0
  250. data/third_party/closure-library/closure/goog/debug/logrecord.js +271 -0
  251. data/third_party/closure-library/closure/goog/debug/logrecordserializer.js +121 -0
  252. data/third_party/closure-library/closure/goog/debug/logrecordserializer_test.html +96 -0
  253. data/third_party/closure-library/closure/goog/debug/reflect.js +178 -0
  254. data/third_party/closure-library/closure/goog/debug/reflect_test.html +101 -0
  255. data/third_party/closure-library/closure/goog/debug/relativetimeprovider.js +83 -0
  256. data/third_party/closure-library/closure/goog/debug/tracer.js +724 -0
  257. data/third_party/closure-library/closure/goog/debug/tracer_test.html +57 -0
  258. data/third_party/closure-library/closure/goog/demos/advancedtooltip.html +78 -0
  259. data/third_party/closure-library/closure/goog/demos/animationqueue.html +149 -0
  260. data/third_party/closure-library/closure/goog/demos/autocomplete-basic.html +56 -0
  261. data/third_party/closure-library/closure/goog/demos/autocompleteremote.html +40 -0
  262. data/third_party/closure-library/closure/goog/demos/autocompleteremotedata.js +18 -0
  263. data/third_party/closure-library/closure/goog/demos/autocompleterichremote.html +137 -0
  264. data/third_party/closure-library/closure/goog/demos/autocompleterichremotedata.js +33 -0
  265. data/third_party/closure-library/closure/goog/demos/bidiinput.html +72 -0
  266. data/third_party/closure-library/closure/goog/demos/blobhasher.html +61 -0
  267. data/third_party/closure-library/closure/goog/demos/bubble.html +250 -0
  268. data/third_party/closure-library/closure/goog/demos/button.html +395 -0
  269. data/third_party/closure-library/closure/goog/demos/charcounter.html +57 -0
  270. data/third_party/closure-library/closure/goog/demos/charpicker.html +66 -0
  271. data/third_party/closure-library/closure/goog/demos/checkbox.html +122 -0
  272. data/third_party/closure-library/closure/goog/demos/color-contrast.html +60 -0
  273. data/third_party/closure-library/closure/goog/demos/colormenubutton.html +221 -0
  274. data/third_party/closure-library/closure/goog/demos/colorpicker.html +43 -0
  275. data/third_party/closure-library/closure/goog/demos/combobox.html +160 -0
  276. data/third_party/closure-library/closure/goog/demos/container.html +670 -0
  277. data/third_party/closure-library/closure/goog/demos/control.html +477 -0
  278. data/third_party/closure-library/closure/goog/demos/css/demo.css +75 -0
  279. data/third_party/closure-library/closure/goog/demos/css/emojipicker.css +36 -0
  280. data/third_party/closure-library/closure/goog/demos/css/emojisprite.css +92 -0
  281. data/third_party/closure-library/closure/goog/demos/css3button.html +166 -0
  282. data/third_party/closure-library/closure/goog/demos/css3menubutton.html +285 -0
  283. data/third_party/closure-library/closure/goog/demos/cssspriteanimation.html +80 -0
  284. data/third_party/closure-library/closure/goog/demos/datepicker.html +183 -0
  285. data/third_party/closure-library/closure/goog/demos/debug.html +118 -0
  286. data/third_party/closure-library/closure/goog/demos/depsgraph.html +220 -0
  287. data/third_party/closure-library/closure/goog/demos/dialog.html +156 -0
  288. data/third_party/closure-library/closure/goog/demos/dimensionpicker.html +108 -0
  289. data/third_party/closure-library/closure/goog/demos/dimensionpicker_rtl.html +123 -0
  290. data/third_party/closure-library/closure/goog/demos/dom_selection.html +88 -0
  291. data/third_party/closure-library/closure/goog/demos/drag.html +191 -0
  292. data/third_party/closure-library/closure/goog/demos/dragdrop.html +263 -0
  293. data/third_party/closure-library/closure/goog/demos/dragdropdetector.html +46 -0
  294. data/third_party/closure-library/closure/goog/demos/dragdropdetector_target.html +17 -0
  295. data/third_party/closure-library/closure/goog/demos/dragger.html +83 -0
  296. data/third_party/closure-library/closure/goog/demos/draglistgroup.html +273 -0
  297. data/third_party/closure-library/closure/goog/demos/dragscrollsupport.html +133 -0
  298. data/third_party/closure-library/closure/goog/demos/drilldownrow.html +78 -0
  299. data/third_party/closure-library/closure/goog/demos/editor/deps.js +21 -0
  300. data/third_party/closure-library/closure/goog/demos/editor/editor.html +139 -0
  301. data/third_party/closure-library/closure/goog/demos/editor/equationeditor.html +36 -0
  302. data/third_party/closure-library/closure/goog/demos/editor/equationeditor.js +40 -0
  303. data/third_party/closure-library/closure/goog/demos/editor/field_basic.html +74 -0
  304. data/third_party/closure-library/closure/goog/demos/editor/helloworld.html +91 -0
  305. data/third_party/closure-library/closure/goog/demos/editor/helloworld.js +81 -0
  306. data/third_party/closure-library/closure/goog/demos/editor/helloworld_test.html +75 -0
  307. data/third_party/closure-library/closure/goog/demos/editor/helloworlddialog.js +171 -0
  308. data/third_party/closure-library/closure/goog/demos/editor/helloworlddialog_test.html +100 -0
  309. data/third_party/closure-library/closure/goog/demos/editor/helloworlddialogplugin.js +116 -0
  310. data/third_party/closure-library/closure/goog/demos/editor/helloworlddialogplugin_test.html +198 -0
  311. data/third_party/closure-library/closure/goog/demos/editor/seamlessfield.html +106 -0
  312. data/third_party/closure-library/closure/goog/demos/editor/tableeditor.html +93 -0
  313. data/third_party/closure-library/closure/goog/demos/effects.html +162 -0
  314. data/third_party/closure-library/closure/goog/demos/emoji/200.gif +0 -0
  315. data/third_party/closure-library/closure/goog/demos/emoji/201.gif +0 -0
  316. data/third_party/closure-library/closure/goog/demos/emoji/202.gif +0 -0
  317. data/third_party/closure-library/closure/goog/demos/emoji/203.gif +0 -0
  318. data/third_party/closure-library/closure/goog/demos/emoji/204.gif +0 -0
  319. data/third_party/closure-library/closure/goog/demos/emoji/205.gif +0 -0
  320. data/third_party/closure-library/closure/goog/demos/emoji/206.gif +0 -0
  321. data/third_party/closure-library/closure/goog/demos/emoji/2BC.gif +0 -0
  322. data/third_party/closure-library/closure/goog/demos/emoji/2BD.gif +0 -0
  323. data/third_party/closure-library/closure/goog/demos/emoji/2BE.gif +0 -0
  324. data/third_party/closure-library/closure/goog/demos/emoji/2BF.gif +0 -0
  325. data/third_party/closure-library/closure/goog/demos/emoji/2C0.gif +0 -0
  326. data/third_party/closure-library/closure/goog/demos/emoji/2C1.gif +0 -0
  327. data/third_party/closure-library/closure/goog/demos/emoji/2C2.gif +0 -0
  328. data/third_party/closure-library/closure/goog/demos/emoji/2C3.gif +0 -0
  329. data/third_party/closure-library/closure/goog/demos/emoji/2C4.gif +0 -0
  330. data/third_party/closure-library/closure/goog/demos/emoji/2C5.gif +0 -0
  331. data/third_party/closure-library/closure/goog/demos/emoji/2C6.gif +0 -0
  332. data/third_party/closure-library/closure/goog/demos/emoji/2C7.gif +0 -0
  333. data/third_party/closure-library/closure/goog/demos/emoji/2C8.gif +0 -0
  334. data/third_party/closure-library/closure/goog/demos/emoji/2C9.gif +0 -0
  335. data/third_party/closure-library/closure/goog/demos/emoji/2CA.gif +0 -0
  336. data/third_party/closure-library/closure/goog/demos/emoji/2CB.gif +0 -0
  337. data/third_party/closure-library/closure/goog/demos/emoji/2CC.gif +0 -0
  338. data/third_party/closure-library/closure/goog/demos/emoji/2CD.gif +0 -0
  339. data/third_party/closure-library/closure/goog/demos/emoji/2CE.gif +0 -0
  340. data/third_party/closure-library/closure/goog/demos/emoji/2CF.gif +0 -0
  341. data/third_party/closure-library/closure/goog/demos/emoji/2D0.gif +0 -0
  342. data/third_party/closure-library/closure/goog/demos/emoji/2D1.gif +0 -0
  343. data/third_party/closure-library/closure/goog/demos/emoji/2D2.gif +0 -0
  344. data/third_party/closure-library/closure/goog/demos/emoji/2D3.gif +0 -0
  345. data/third_party/closure-library/closure/goog/demos/emoji/2D4.gif +0 -0
  346. data/third_party/closure-library/closure/goog/demos/emoji/2D5.gif +0 -0
  347. data/third_party/closure-library/closure/goog/demos/emoji/2D6.gif +0 -0
  348. data/third_party/closure-library/closure/goog/demos/emoji/2D7.gif +0 -0
  349. data/third_party/closure-library/closure/goog/demos/emoji/2D8.gif +0 -0
  350. data/third_party/closure-library/closure/goog/demos/emoji/2D9.gif +0 -0
  351. data/third_party/closure-library/closure/goog/demos/emoji/2DA.gif +0 -0
  352. data/third_party/closure-library/closure/goog/demos/emoji/2DB.gif +0 -0
  353. data/third_party/closure-library/closure/goog/demos/emoji/2DC.gif +0 -0
  354. data/third_party/closure-library/closure/goog/demos/emoji/2DD.gif +0 -0
  355. data/third_party/closure-library/closure/goog/demos/emoji/2DE.gif +0 -0
  356. data/third_party/closure-library/closure/goog/demos/emoji/2DF.gif +0 -0
  357. data/third_party/closure-library/closure/goog/demos/emoji/2E0.gif +0 -0
  358. data/third_party/closure-library/closure/goog/demos/emoji/2E1.gif +0 -0
  359. data/third_party/closure-library/closure/goog/demos/emoji/2E2.gif +0 -0
  360. data/third_party/closure-library/closure/goog/demos/emoji/2E3.gif +0 -0
  361. data/third_party/closure-library/closure/goog/demos/emoji/2E4.gif +0 -0
  362. data/third_party/closure-library/closure/goog/demos/emoji/2E5.gif +0 -0
  363. data/third_party/closure-library/closure/goog/demos/emoji/2E6.gif +0 -0
  364. data/third_party/closure-library/closure/goog/demos/emoji/2E7.gif +0 -0
  365. data/third_party/closure-library/closure/goog/demos/emoji/2E8.gif +0 -0
  366. data/third_party/closure-library/closure/goog/demos/emoji/2E9.gif +0 -0
  367. data/third_party/closure-library/closure/goog/demos/emoji/2EA.gif +0 -0
  368. data/third_party/closure-library/closure/goog/demos/emoji/2EB.gif +0 -0
  369. data/third_party/closure-library/closure/goog/demos/emoji/2EC.gif +0 -0
  370. data/third_party/closure-library/closure/goog/demos/emoji/2ED.gif +0 -0
  371. data/third_party/closure-library/closure/goog/demos/emoji/2EE.gif +0 -0
  372. data/third_party/closure-library/closure/goog/demos/emoji/2EF.gif +0 -0
  373. data/third_party/closure-library/closure/goog/demos/emoji/2F0.gif +0 -0
  374. data/third_party/closure-library/closure/goog/demos/emoji/2F1.gif +0 -0
  375. data/third_party/closure-library/closure/goog/demos/emoji/2F2.gif +0 -0
  376. data/third_party/closure-library/closure/goog/demos/emoji/2F3.gif +0 -0
  377. data/third_party/closure-library/closure/goog/demos/emoji/2F4.gif +0 -0
  378. data/third_party/closure-library/closure/goog/demos/emoji/2F5.gif +0 -0
  379. data/third_party/closure-library/closure/goog/demos/emoji/2F6.gif +0 -0
  380. data/third_party/closure-library/closure/goog/demos/emoji/2F7.gif +0 -0
  381. data/third_party/closure-library/closure/goog/demos/emoji/2F8.gif +0 -0
  382. data/third_party/closure-library/closure/goog/demos/emoji/2F9.gif +0 -0
  383. data/third_party/closure-library/closure/goog/demos/emoji/2FA.gif +0 -0
  384. data/third_party/closure-library/closure/goog/demos/emoji/2FB.gif +0 -0
  385. data/third_party/closure-library/closure/goog/demos/emoji/2FC.gif +0 -0
  386. data/third_party/closure-library/closure/goog/demos/emoji/2FD.gif +0 -0
  387. data/third_party/closure-library/closure/goog/demos/emoji/2FE.gif +0 -0
  388. data/third_party/closure-library/closure/goog/demos/emoji/2FF.gif +0 -0
  389. data/third_party/closure-library/closure/goog/demos/emoji/none.gif +0 -0
  390. data/third_party/closure-library/closure/goog/demos/emoji/sprite.png +0 -0
  391. data/third_party/closure-library/closure/goog/demos/emoji/sprite2.png +0 -0
  392. data/third_party/closure-library/closure/goog/demos/emoji/unknown.gif +0 -0
  393. data/third_party/closure-library/closure/goog/demos/event-propagation.html +192 -0
  394. data/third_party/closure-library/closure/goog/demos/events.html +99 -0
  395. data/third_party/closure-library/closure/goog/demos/eventtarget.html +70 -0
  396. data/third_party/closure-library/closure/goog/demos/filedrophandler.html +65 -0
  397. data/third_party/closure-library/closure/goog/demos/filteredmenu.html +118 -0
  398. data/third_party/closure-library/closure/goog/demos/focushandler.html +58 -0
  399. data/third_party/closure-library/closure/goog/demos/fpsdisplay.html +50 -0
  400. data/third_party/closure-library/closure/goog/demos/fx/css3/transition.html +222 -0
  401. data/third_party/closure-library/closure/goog/demos/gauge.html +158 -0
  402. data/third_party/closure-library/closure/goog/demos/graphics/advancedcoordinates.html +141 -0
  403. data/third_party/closure-library/closure/goog/demos/graphics/advancedcoordinates2.html +130 -0
  404. data/third_party/closure-library/closure/goog/demos/graphics/basicelements.html +264 -0
  405. data/third_party/closure-library/closure/goog/demos/graphics/events.html +114 -0
  406. data/third_party/closure-library/closure/goog/demos/graphics/modifyelements.html +195 -0
  407. data/third_party/closure-library/closure/goog/demos/graphics/subpixel.html +80 -0
  408. data/third_party/closure-library/closure/goog/demos/graphics/tiger.html +105 -0
  409. data/third_party/closure-library/closure/goog/demos/graphics/tigerdata.js +2841 -0
  410. data/third_party/closure-library/closure/goog/demos/history1.html +132 -0
  411. data/third_party/closure-library/closure/goog/demos/history2.html +119 -0
  412. data/third_party/closure-library/closure/goog/demos/history3.html +116 -0
  413. data/third_party/closure-library/closure/goog/demos/history3js.html +48 -0
  414. data/third_party/closure-library/closure/goog/demos/history_blank.html +26 -0
  415. data/third_party/closure-library/closure/goog/demos/hovercard.html +177 -0
  416. data/third_party/closure-library/closure/goog/demos/hsvapalette.html +55 -0
  417. data/third_party/closure-library/closure/goog/demos/hsvpalette.html +56 -0
  418. data/third_party/closure-library/closure/goog/demos/html5history.html +87 -0
  419. data/third_party/closure-library/closure/goog/demos/imagelessbutton.html +221 -0
  420. data/third_party/closure-library/closure/goog/demos/imagelessmenubutton.html +285 -0
  421. data/third_party/closure-library/closure/goog/demos/index.html +20 -0
  422. data/third_party/closure-library/closure/goog/demos/index_nav.html +255 -0
  423. data/third_party/closure-library/closure/goog/demos/index_splash.html +27 -0
  424. data/third_party/closure-library/closure/goog/demos/inline_block_quirks.html +125 -0
  425. data/third_party/closure-library/closure/goog/demos/inline_block_standards.html +126 -0
  426. data/third_party/closure-library/closure/goog/demos/inputdatepicker.html +60 -0
  427. data/third_party/closure-library/closure/goog/demos/inputhandler.html +88 -0
  428. data/third_party/closure-library/closure/goog/demos/jsonprettyprinter.html +80 -0
  429. data/third_party/closure-library/closure/goog/demos/keyboardshortcuts.html +112 -0
  430. data/third_party/closure-library/closure/goog/demos/keyhandler.html +118 -0
  431. data/third_party/closure-library/closure/goog/demos/labelinput.html +42 -0
  432. data/third_party/closure-library/closure/goog/demos/menu.html +220 -0
  433. data/third_party/closure-library/closure/goog/demos/menubar.html +211 -0
  434. data/third_party/closure-library/closure/goog/demos/menubutton.html +380 -0
  435. data/third_party/closure-library/closure/goog/demos/menubutton_frame.html +27 -0
  436. data/third_party/closure-library/closure/goog/demos/menuitem.html +164 -0
  437. data/third_party/closure-library/closure/goog/demos/mousewheelhandler.html +109 -0
  438. data/third_party/closure-library/closure/goog/demos/offline.html +268 -0
  439. data/third_party/closure-library/closure/goog/demos/onlinehandler.html +79 -0
  440. data/third_party/closure-library/closure/goog/demos/palette.html +302 -0
  441. data/third_party/closure-library/closure/goog/demos/pastehandler.html +54 -0
  442. data/third_party/closure-library/closure/goog/demos/pixeldensitymonitor.html +51 -0
  443. data/third_party/closure-library/closure/goog/demos/plaintextspellchecker.html +106 -0
  444. data/third_party/closure-library/closure/goog/demos/popup.html +206 -0
  445. data/third_party/closure-library/closure/goog/demos/popupcolorpicker.html +49 -0
  446. data/third_party/closure-library/closure/goog/demos/popupdatepicker.html +53 -0
  447. data/third_party/closure-library/closure/goog/demos/popupemojipicker.html +407 -0
  448. data/third_party/closure-library/closure/goog/demos/popupmenu.html +116 -0
  449. data/third_party/closure-library/closure/goog/demos/progressbar.html +97 -0
  450. data/third_party/closure-library/closure/goog/demos/prompt.html +92 -0
  451. data/third_party/closure-library/closure/goog/demos/quadtree.html +107 -0
  452. data/third_party/closure-library/closure/goog/demos/ratings.html +121 -0
  453. data/third_party/closure-library/closure/goog/demos/richtextspellchecker.html +92 -0
  454. data/third_party/closure-library/closure/goog/demos/roundedpanel.html +139 -0
  455. data/third_party/closure-library/closure/goog/demos/samplecomponent.html +75 -0
  456. data/third_party/closure-library/closure/goog/demos/samplecomponent.js +197 -0
  457. data/third_party/closure-library/closure/goog/demos/scrollfloater.html +113 -0
  458. data/third_party/closure-library/closure/goog/demos/select.html +324 -0
  459. data/third_party/closure-library/closure/goog/demos/selectionmenubutton.html +186 -0
  460. data/third_party/closure-library/closure/goog/demos/serverchart.html +122 -0
  461. data/third_party/closure-library/closure/goog/demos/slider.html +128 -0
  462. data/third_party/closure-library/closure/goog/demos/splitbehavior.html +163 -0
  463. data/third_party/closure-library/closure/goog/demos/splitpane.html +243 -0
  464. data/third_party/closure-library/closure/goog/demos/stopevent.html +171 -0
  465. data/third_party/closure-library/closure/goog/demos/submenus.html +130 -0
  466. data/third_party/closure-library/closure/goog/demos/submenus2.html +150 -0
  467. data/third_party/closure-library/closure/goog/demos/tabbar.html +289 -0
  468. data/third_party/closure-library/closure/goog/demos/tablesorter.html +116 -0
  469. data/third_party/closure-library/closure/goog/demos/tabpane.html +302 -0
  470. data/third_party/closure-library/closure/goog/demos/textarea.html +128 -0
  471. data/third_party/closure-library/closure/goog/demos/timers.html +291 -0
  472. data/third_party/closure-library/closure/goog/demos/toolbar.html +703 -0
  473. data/third_party/closure-library/closure/goog/demos/tooltip.html +91 -0
  474. data/third_party/closure-library/closure/goog/demos/tracer.html +92 -0
  475. data/third_party/closure-library/closure/goog/demos/tree/demo.html +126 -0
  476. data/third_party/closure-library/closure/goog/demos/tree/testdata.js +260 -0
  477. data/third_party/closure-library/closure/goog/demos/tweakui.html +121 -0
  478. data/third_party/closure-library/closure/goog/demos/twothumbslider.html +121 -0
  479. data/third_party/closure-library/closure/goog/demos/useragent.html +214 -0
  480. data/third_party/closure-library/closure/goog/demos/viewportsizemonitor.html +71 -0
  481. data/third_party/closure-library/closure/goog/demos/xpc/blank.html +7 -0
  482. data/third_party/closure-library/closure/goog/demos/xpc/index.html +89 -0
  483. data/third_party/closure-library/closure/goog/demos/xpc/inner.html +58 -0
  484. data/third_party/closure-library/closure/goog/demos/xpc/minimal/blank.html +7 -0
  485. data/third_party/closure-library/closure/goog/demos/xpc/minimal/index.html +105 -0
  486. data/third_party/closure-library/closure/goog/demos/xpc/minimal/inner.html +75 -0
  487. data/third_party/closure-library/closure/goog/demos/xpc/minimal/relay.html +7 -0
  488. data/third_party/closure-library/closure/goog/demos/xpc/relay.html +16 -0
  489. data/third_party/closure-library/closure/goog/demos/xpc/xpcdemo.js +307 -0
  490. data/third_party/closure-library/closure/goog/demos/zippy.html +149 -0
  491. data/third_party/closure-library/closure/goog/deps.js +911 -0
  492. data/third_party/closure-library/closure/goog/disposable/disposable.js +294 -0
  493. data/third_party/closure-library/closure/goog/disposable/disposable_test.html +307 -0
  494. data/third_party/closure-library/closure/goog/disposable/idisposable.js +45 -0
  495. data/third_party/closure-library/closure/goog/dom/a11y.js +169 -0
  496. data/third_party/closure-library/closure/goog/dom/abstractmultirange.js +77 -0
  497. data/third_party/closure-library/closure/goog/dom/abstractrange.js +528 -0
  498. data/third_party/closure-library/closure/goog/dom/abstractrange_test.html +73 -0
  499. data/third_party/closure-library/closure/goog/dom/annotate.js +355 -0
  500. data/third_party/closure-library/closure/goog/dom/annotate_test.html +215 -0
  501. data/third_party/closure-library/closure/goog/dom/browserfeature.js +67 -0
  502. data/third_party/closure-library/closure/goog/dom/browserrange/abstractrange.js +352 -0
  503. data/third_party/closure-library/closure/goog/dom/browserrange/browserrange.js +150 -0
  504. data/third_party/closure-library/closure/goog/dom/browserrange/browserrange_test.html +638 -0
  505. data/third_party/closure-library/closure/goog/dom/browserrange/geckorange.js +86 -0
  506. data/third_party/closure-library/closure/goog/dom/browserrange/ierange.js +952 -0
  507. data/third_party/closure-library/closure/goog/dom/browserrange/operarange.js +83 -0
  508. data/third_party/closure-library/closure/goog/dom/browserrange/w3crange.js +365 -0
  509. data/third_party/closure-library/closure/goog/dom/browserrange/webkitrange.js +112 -0
  510. data/third_party/closure-library/closure/goog/dom/bufferedviewportsizemonitor.js +202 -0
  511. data/third_party/closure-library/closure/goog/dom/bufferedviewportsizemonitor_test.html +17 -0
  512. data/third_party/closure-library/closure/goog/dom/bufferedviewportsizemonitor_test.js +130 -0
  513. data/third_party/closure-library/closure/goog/dom/classes.js +227 -0
  514. data/third_party/closure-library/closure/goog/dom/classes_quirks_test.html +63 -0
  515. data/third_party/closure-library/closure/goog/dom/classes_test.html +64 -0
  516. data/third_party/closure-library/closure/goog/dom/classes_test.js +231 -0
  517. data/third_party/closure-library/closure/goog/dom/classlist.js +271 -0
  518. data/third_party/closure-library/closure/goog/dom/classlist_test.html +26 -0
  519. data/third_party/closure-library/closure/goog/dom/classlist_test.js +244 -0
  520. data/third_party/closure-library/closure/goog/dom/controlrange.js +505 -0
  521. data/third_party/closure-library/closure/goog/dom/controlrange_test.html +246 -0
  522. data/third_party/closure-library/closure/goog/dom/dataset.js +135 -0
  523. data/third_party/closure-library/closure/goog/dom/dataset_test.html +117 -0
  524. data/third_party/closure-library/closure/goog/dom/dom.js +2700 -0
  525. data/third_party/closure-library/closure/goog/dom/dom_quirks_test.html +113 -0
  526. data/third_party/closure-library/closure/goog/dom/dom_test.html +113 -0
  527. data/third_party/closure-library/closure/goog/dom/dom_test.js +1421 -0
  528. data/third_party/closure-library/closure/goog/dom/fontsizemonitor.js +159 -0
  529. data/third_party/closure-library/closure/goog/dom/fontsizemonitor_test.html +284 -0
  530. data/third_party/closure-library/closure/goog/dom/forms.js +414 -0
  531. data/third_party/closure-library/closure/goog/dom/forms_test.html +501 -0
  532. data/third_party/closure-library/closure/goog/dom/fullscreen.js +124 -0
  533. data/third_party/closure-library/closure/goog/dom/iframe.js +163 -0
  534. data/third_party/closure-library/closure/goog/dom/iframe_test.html +88 -0
  535. data/third_party/closure-library/closure/goog/dom/iter.js +127 -0
  536. data/third_party/closure-library/closure/goog/dom/iter_test.html +97 -0
  537. data/third_party/closure-library/closure/goog/dom/multirange.js +519 -0
  538. data/third_party/closure-library/closure/goog/dom/multirange_test.html +67 -0
  539. data/third_party/closure-library/closure/goog/dom/nodeiterator.js +86 -0
  540. data/third_party/closure-library/closure/goog/dom/nodeiterator_test.html +49 -0
  541. data/third_party/closure-library/closure/goog/dom/nodeoffset.js +112 -0
  542. data/third_party/closure-library/closure/goog/dom/nodeoffset_test.html +88 -0
  543. data/third_party/closure-library/closure/goog/dom/pattern/abstractpattern.js +60 -0
  544. data/third_party/closure-library/closure/goog/dom/pattern/allchildren.js +75 -0
  545. data/third_party/closure-library/closure/goog/dom/pattern/callback/callback.js +82 -0
  546. data/third_party/closure-library/closure/goog/dom/pattern/callback/counter.js +72 -0
  547. data/third_party/closure-library/closure/goog/dom/pattern/callback/test.js +77 -0
  548. data/third_party/closure-library/closure/goog/dom/pattern/childmatches.js +154 -0
  549. data/third_party/closure-library/closure/goog/dom/pattern/endtag.js +53 -0
  550. data/third_party/closure-library/closure/goog/dom/pattern/fulltag.js +93 -0
  551. data/third_party/closure-library/closure/goog/dom/pattern/matcher.js +150 -0
  552. data/third_party/closure-library/closure/goog/dom/pattern/matcher_test.html +204 -0
  553. data/third_party/closure-library/closure/goog/dom/pattern/nodetype.js +58 -0
  554. data/third_party/closure-library/closure/goog/dom/pattern/pattern.js +93 -0
  555. data/third_party/closure-library/closure/goog/dom/pattern/pattern_test.html +614 -0
  556. data/third_party/closure-library/closure/goog/dom/pattern/repeat.js +190 -0
  557. data/third_party/closure-library/closure/goog/dom/pattern/sequence.js +141 -0
  558. data/third_party/closure-library/closure/goog/dom/pattern/starttag.js +53 -0
  559. data/third_party/closure-library/closure/goog/dom/pattern/tag.js +150 -0
  560. data/third_party/closure-library/closure/goog/dom/pattern/text.js +70 -0
  561. data/third_party/closure-library/closure/goog/dom/range.js +226 -0
  562. data/third_party/closure-library/closure/goog/dom/range_test.html +735 -0
  563. data/third_party/closure-library/closure/goog/dom/rangeendpoint.js +32 -0
  564. data/third_party/closure-library/closure/goog/dom/savedcaretrange.js +215 -0
  565. data/third_party/closure-library/closure/goog/dom/savedcaretrange_test.html +257 -0
  566. data/third_party/closure-library/closure/goog/dom/savedrange.js +74 -0
  567. data/third_party/closure-library/closure/goog/dom/savedrange_test.html +61 -0
  568. data/third_party/closure-library/closure/goog/dom/selection.js +470 -0
  569. data/third_party/closure-library/closure/goog/dom/selection_test.html +329 -0
  570. data/third_party/closure-library/closure/goog/dom/tagiterator.js +367 -0
  571. data/third_party/closure-library/closure/goog/dom/tagiterator_test.html +589 -0
  572. data/third_party/closure-library/closure/goog/dom/tagname.js +159 -0
  573. data/third_party/closure-library/closure/goog/dom/tagname_test.html +37 -0
  574. data/third_party/closure-library/closure/goog/dom/textrange.js +630 -0
  575. data/third_party/closure-library/closure/goog/dom/textrange_test.html +342 -0
  576. data/third_party/closure-library/closure/goog/dom/textrangeiterator.js +244 -0
  577. data/third_party/closure-library/closure/goog/dom/textrangeiterator_test.html +142 -0
  578. data/third_party/closure-library/closure/goog/dom/vendor.js +62 -0
  579. data/third_party/closure-library/closure/goog/dom/vendor_test.html +202 -0
  580. data/third_party/closure-library/closure/goog/dom/viewportsizemonitor.js +180 -0
  581. data/third_party/closure-library/closure/goog/dom/viewportsizemonitor_test.html +138 -0
  582. data/third_party/closure-library/closure/goog/dom/xml.js +204 -0
  583. data/third_party/closure-library/closure/goog/dom/xml_test.html +103 -0
  584. data/third_party/closure-library/closure/goog/editor/browserfeature.js +273 -0
  585. data/third_party/closure-library/closure/goog/editor/browserfeature_test.html +124 -0
  586. data/third_party/closure-library/closure/goog/editor/clicktoeditwrapper.js +435 -0
  587. data/third_party/closure-library/closure/goog/editor/clicktoeditwrapper_test.html +137 -0
  588. data/third_party/closure-library/closure/goog/editor/command.js +76 -0
  589. data/third_party/closure-library/closure/goog/editor/contenteditablefield.js +110 -0
  590. data/third_party/closure-library/closure/goog/editor/contenteditablefield_test.html +62 -0
  591. data/third_party/closure-library/closure/goog/editor/defines.js +34 -0
  592. data/third_party/closure-library/closure/goog/editor/field.js +2725 -0
  593. data/third_party/closure-library/closure/goog/editor/field_test.html +32 -0
  594. data/third_party/closure-library/closure/goog/editor/field_test.js +1278 -0
  595. data/third_party/closure-library/closure/goog/editor/focus.js +32 -0
  596. data/third_party/closure-library/closure/goog/editor/focus_test.html +66 -0
  597. data/third_party/closure-library/closure/goog/editor/icontent.js +296 -0
  598. data/third_party/closure-library/closure/goog/editor/icontent_test.html +232 -0
  599. data/third_party/closure-library/closure/goog/editor/link.js +359 -0
  600. data/third_party/closure-library/closure/goog/editor/link_test.html +252 -0
  601. data/third_party/closure-library/closure/goog/editor/node.js +483 -0
  602. data/third_party/closure-library/closure/goog/editor/node_test.html +631 -0
  603. data/third_party/closure-library/closure/goog/editor/plugin.js +463 -0
  604. data/third_party/closure-library/closure/goog/editor/plugin_test.html +187 -0
  605. data/third_party/closure-library/closure/goog/editor/plugins/abstractbubbleplugin.js +630 -0
  606. data/third_party/closure-library/closure/goog/editor/plugins/abstractbubbleplugin_test.html +313 -0
  607. data/third_party/closure-library/closure/goog/editor/plugins/abstractdialogplugin.js +334 -0
  608. data/third_party/closure-library/closure/goog/editor/plugins/abstractdialogplugin_test.html +404 -0
  609. data/third_party/closure-library/closure/goog/editor/plugins/abstracttabhandler.js +78 -0
  610. data/third_party/closure-library/closure/goog/editor/plugins/abstracttabhandler_test.html +91 -0
  611. data/third_party/closure-library/closure/goog/editor/plugins/basictextformatter.js +1750 -0
  612. data/third_party/closure-library/closure/goog/editor/plugins/basictextformatter_test.html +1171 -0
  613. data/third_party/closure-library/closure/goog/editor/plugins/blockquote.js +479 -0
  614. data/third_party/closure-library/closure/goog/editor/plugins/blockquote_test.html +212 -0
  615. data/third_party/closure-library/closure/goog/editor/plugins/emoticons.js +88 -0
  616. data/third_party/closure-library/closure/goog/editor/plugins/emoticons_test.html +92 -0
  617. data/third_party/closure-library/closure/goog/editor/plugins/enterhandler.js +767 -0
  618. data/third_party/closure-library/closure/goog/editor/plugins/enterhandler_test.html +754 -0
  619. data/third_party/closure-library/closure/goog/editor/plugins/equationeditorbubble.js +153 -0
  620. data/third_party/closure-library/closure/goog/editor/plugins/equationeditorplugin.js +215 -0
  621. data/third_party/closure-library/closure/goog/editor/plugins/equationeditorplugin_test.html +120 -0
  622. data/third_party/closure-library/closure/goog/editor/plugins/firststrong.js +326 -0
  623. data/third_party/closure-library/closure/goog/editor/plugins/firststrong_test.html +411 -0
  624. data/third_party/closure-library/closure/goog/editor/plugins/headerformatter.js +95 -0
  625. data/third_party/closure-library/closure/goog/editor/plugins/headerformatter_test.html +100 -0
  626. data/third_party/closure-library/closure/goog/editor/plugins/linkbubble.js +562 -0
  627. data/third_party/closure-library/closure/goog/editor/plugins/linkbubble_test.html +375 -0
  628. data/third_party/closure-library/closure/goog/editor/plugins/linkdialogplugin.js +437 -0
  629. data/third_party/closure-library/closure/goog/editor/plugins/linkdialogplugin_test.html +740 -0
  630. data/third_party/closure-library/closure/goog/editor/plugins/linkshortcutplugin.js +63 -0
  631. data/third_party/closure-library/closure/goog/editor/plugins/linkshortcutplugin_test.html +70 -0
  632. data/third_party/closure-library/closure/goog/editor/plugins/listtabhandler.js +66 -0
  633. data/third_party/closure-library/closure/goog/editor/plugins/listtabhandler_test.html +177 -0
  634. data/third_party/closure-library/closure/goog/editor/plugins/loremipsum.js +188 -0
  635. data/third_party/closure-library/closure/goog/editor/plugins/loremipsum_test.html +169 -0
  636. data/third_party/closure-library/closure/goog/editor/plugins/removeformatting.js +779 -0
  637. data/third_party/closure-library/closure/goog/editor/plugins/removeformatting_test.html +961 -0
  638. data/third_party/closure-library/closure/goog/editor/plugins/spacestabhandler.js +93 -0
  639. data/third_party/closure-library/closure/goog/editor/plugins/spacestabhandler_test.html +186 -0
  640. data/third_party/closure-library/closure/goog/editor/plugins/tableeditor.js +472 -0
  641. data/third_party/closure-library/closure/goog/editor/plugins/tableeditor_test.html +299 -0
  642. data/third_party/closure-library/closure/goog/editor/plugins/tagonenterhandler.js +742 -0
  643. data/third_party/closure-library/closure/goog/editor/plugins/tagonenterhandler_test.html +549 -0
  644. data/third_party/closure-library/closure/goog/editor/plugins/undoredo.js +1015 -0
  645. data/third_party/closure-library/closure/goog/editor/plugins/undoredo_test.html +525 -0
  646. data/third_party/closure-library/closure/goog/editor/plugins/undoredomanager.js +337 -0
  647. data/third_party/closure-library/closure/goog/editor/plugins/undoredomanager_test.html +394 -0
  648. data/third_party/closure-library/closure/goog/editor/plugins/undoredostate.js +86 -0
  649. data/third_party/closure-library/closure/goog/editor/plugins/undoredostate_test.html +44 -0
  650. data/third_party/closure-library/closure/goog/editor/range.js +632 -0
  651. data/third_party/closure-library/closure/goog/editor/range_test.html +1004 -0
  652. data/third_party/closure-library/closure/goog/editor/seamlessfield.js +738 -0
  653. data/third_party/closure-library/closure/goog/editor/seamlessfield_quirks_test.html +28 -0
  654. data/third_party/closure-library/closure/goog/editor/seamlessfield_test.html +32 -0
  655. data/third_party/closure-library/closure/goog/editor/seamlessfield_test.js +472 -0
  656. data/third_party/closure-library/closure/goog/editor/style.js +222 -0
  657. data/third_party/closure-library/closure/goog/editor/style_test.html +177 -0
  658. data/third_party/closure-library/closure/goog/editor/table.js +567 -0
  659. data/third_party/closure-library/closure/goog/editor/table_test.html +529 -0
  660. data/third_party/closure-library/closure/goog/events/actioneventwrapper.js +136 -0
  661. data/third_party/closure-library/closure/goog/events/actioneventwrapper_test.html +211 -0
  662. data/third_party/closure-library/closure/goog/events/actionhandler.js +181 -0
  663. data/third_party/closure-library/closure/goog/events/actionhandler_test.html +82 -0
  664. data/third_party/closure-library/closure/goog/events/browserevent.js +411 -0
  665. data/third_party/closure-library/closure/goog/events/browserevent_test.html +161 -0
  666. data/third_party/closure-library/closure/goog/events/browserfeature.js +85 -0
  667. data/third_party/closure-library/closure/goog/events/event.js +154 -0
  668. data/third_party/closure-library/closure/goog/events/event_test.html +66 -0
  669. data/third_party/closure-library/closure/goog/events/eventhandler.js +291 -0
  670. data/third_party/closure-library/closure/goog/events/eventhandler_test.html +254 -0
  671. data/third_party/closure-library/closure/goog/events/events.js +1095 -0
  672. data/third_party/closure-library/closure/goog/events/events_test.html +659 -0
  673. data/third_party/closure-library/closure/goog/events/eventtarget.js +401 -0
  674. data/third_party/closure-library/closure/goog/events/eventtarget_test.html +70 -0
  675. data/third_party/closure-library/closure/goog/events/eventtarget_via_googevents_test.html +85 -0
  676. data/third_party/closure-library/closure/goog/events/eventtarget_via_w3cinterface_test.html +49 -0
  677. data/third_party/closure-library/closure/goog/events/eventtargettester.js +1028 -0
  678. data/third_party/closure-library/closure/goog/events/eventtype.js +165 -0
  679. data/third_party/closure-library/closure/goog/events/eventwrapper.js +66 -0
  680. data/third_party/closure-library/closure/goog/events/filedrophandler.js +221 -0
  681. data/third_party/closure-library/closure/goog/events/filedrophandler_test.html +258 -0
  682. data/third_party/closure-library/closure/goog/events/focushandler.js +106 -0
  683. data/third_party/closure-library/closure/goog/events/imehandler.js +363 -0
  684. data/third_party/closure-library/closure/goog/events/imehandler_test.html +269 -0
  685. data/third_party/closure-library/closure/goog/events/inputhandler.js +213 -0
  686. data/third_party/closure-library/closure/goog/events/keycodes.js +377 -0
  687. data/third_party/closure-library/closure/goog/events/keycodes_test.html +125 -0
  688. data/third_party/closure-library/closure/goog/events/keyhandler.js +556 -0
  689. data/third_party/closure-library/closure/goog/events/keyhandler_test.html +727 -0
  690. data/third_party/closure-library/closure/goog/events/keynames.js +132 -0
  691. data/third_party/closure-library/closure/goog/events/listenable.js +323 -0
  692. data/third_party/closure-library/closure/goog/events/listenable_test.html +31 -0
  693. data/third_party/closure-library/closure/goog/events/listener.js +131 -0
  694. data/third_party/closure-library/closure/goog/events/listenermap.js +299 -0
  695. data/third_party/closure-library/closure/goog/events/listenermap_test.html +19 -0
  696. data/third_party/closure-library/closure/goog/events/listenermap_test.js +116 -0
  697. data/third_party/closure-library/closure/goog/events/mousewheelhandler.js +295 -0
  698. data/third_party/closure-library/closure/goog/events/mousewheelhandler_test.html +385 -0
  699. data/third_party/closure-library/closure/goog/events/onlinehandler.js +162 -0
  700. data/third_party/closure-library/closure/goog/events/onlinelistener_test.html +160 -0
  701. data/third_party/closure-library/closure/goog/events/pastehandler.js +515 -0
  702. data/third_party/closure-library/closure/goog/events/pastehandler_test.html +414 -0
  703. data/third_party/closure-library/closure/goog/format/emailaddress.js +332 -0
  704. data/third_party/closure-library/closure/goog/format/emailaddress_test.html +192 -0
  705. data/third_party/closure-library/closure/goog/format/format.js +491 -0
  706. data/third_party/closure-library/closure/goog/format/format_test.html +302 -0
  707. data/third_party/closure-library/closure/goog/format/htmlprettyprinter.js +407 -0
  708. data/third_party/closure-library/closure/goog/format/htmlprettyprinter_test.html +205 -0
  709. data/third_party/closure-library/closure/goog/format/jsonprettyprinter.js +413 -0
  710. data/third_party/closure-library/closure/goog/format/jsonprettyprinter_test.html +111 -0
  711. data/third_party/closure-library/closure/goog/fs/entry.js +272 -0
  712. data/third_party/closure-library/closure/goog/fs/entryimpl.js +399 -0
  713. data/third_party/closure-library/closure/goog/fs/error.js +102 -0
  714. data/third_party/closure-library/closure/goog/fs/filereader.js +288 -0
  715. data/third_party/closure-library/closure/goog/fs/filesaver.js +176 -0
  716. data/third_party/closure-library/closure/goog/fs/filesystem.js +41 -0
  717. data/third_party/closure-library/closure/goog/fs/filesystemimpl.js +64 -0
  718. data/third_party/closure-library/closure/goog/fs/filewriter.js +110 -0
  719. data/third_party/closure-library/closure/goog/fs/fs.js +253 -0
  720. data/third_party/closure-library/closure/goog/fs/fs_test.html +754 -0
  721. data/third_party/closure-library/closure/goog/fs/progressevent.js +68 -0
  722. data/third_party/closure-library/closure/goog/functions/functions.js +255 -0
  723. data/third_party/closure-library/closure/goog/functions/functions_test.html +223 -0
  724. data/third_party/closure-library/closure/goog/fx/abstractdragdrop.js +1517 -0
  725. data/third_party/closure-library/closure/goog/fx/abstractdragdrop_test.html +663 -0
  726. data/third_party/closure-library/closure/goog/fx/anim/anim.js +210 -0
  727. data/third_party/closure-library/closure/goog/fx/anim/anim_test.html +225 -0
  728. data/third_party/closure-library/closure/goog/fx/animation.js +530 -0
  729. data/third_party/closure-library/closure/goog/fx/animation_test.html +117 -0
  730. data/third_party/closure-library/closure/goog/fx/animationqueue.js +307 -0
  731. data/third_party/closure-library/closure/goog/fx/animationqueue_test.html +316 -0
  732. data/third_party/closure-library/closure/goog/fx/css3/fx.js +62 -0
  733. data/third_party/closure-library/closure/goog/fx/css3/transition.js +196 -0
  734. data/third_party/closure-library/closure/goog/fx/css3/transition_test.html +224 -0
  735. data/third_party/closure-library/closure/goog/fx/cssspriteanimation.js +113 -0
  736. data/third_party/closure-library/closure/goog/fx/cssspriteanimation_test.html +126 -0
  737. data/third_party/closure-library/closure/goog/fx/dom.js +653 -0
  738. data/third_party/closure-library/closure/goog/fx/dragdrop.js +50 -0
  739. data/third_party/closure-library/closure/goog/fx/dragdropgroup.js +109 -0
  740. data/third_party/closure-library/closure/goog/fx/dragdropgroup_test.html +234 -0
  741. data/third_party/closure-library/closure/goog/fx/dragger.js +795 -0
  742. data/third_party/closure-library/closure/goog/fx/dragger_test.html +449 -0
  743. data/third_party/closure-library/closure/goog/fx/draglistgroup.js +1301 -0
  744. data/third_party/closure-library/closure/goog/fx/draglistgroup_test.html +403 -0
  745. data/third_party/closure-library/closure/goog/fx/dragscrollsupport.js +299 -0
  746. data/third_party/closure-library/closure/goog/fx/dragscrollsupport_test.html +354 -0
  747. data/third_party/closure-library/closure/goog/fx/easing.js +50 -0
  748. data/third_party/closure-library/closure/goog/fx/fx.js +32 -0
  749. data/third_party/closure-library/closure/goog/fx/fx_test.html +100 -0
  750. data/third_party/closure-library/closure/goog/fx/transition.js +75 -0
  751. data/third_party/closure-library/closure/goog/fx/transitionbase.js +237 -0
  752. data/third_party/closure-library/closure/goog/gears/basestore.js +521 -0
  753. data/third_party/closure-library/closure/goog/gears/basestore_test.html +247 -0
  754. data/third_party/closure-library/closure/goog/gears/database.js +934 -0
  755. data/third_party/closure-library/closure/goog/gears/database_test.html +699 -0
  756. data/third_party/closure-library/closure/goog/gears/gears.js +228 -0
  757. data/third_party/closure-library/closure/goog/gears/gears_test.html +78 -0
  758. data/third_party/closure-library/closure/goog/gears/httprequest.js +80 -0
  759. data/third_party/closure-library/closure/goog/gears/loggerclient.js +130 -0
  760. data/third_party/closure-library/closure/goog/gears/loggerclient_test.html +172 -0
  761. data/third_party/closure-library/closure/goog/gears/loggerserver.js +157 -0
  762. data/third_party/closure-library/closure/goog/gears/loggerserver_test.html +119 -0
  763. data/third_party/closure-library/closure/goog/gears/logstore.js +478 -0
  764. data/third_party/closure-library/closure/goog/gears/logstore_test.html +600 -0
  765. data/third_party/closure-library/closure/goog/gears/managedresourcestore.js +555 -0
  766. data/third_party/closure-library/closure/goog/gears/managedresourcestore_test.html +453 -0
  767. data/third_party/closure-library/closure/goog/gears/multipartformdata.js +204 -0
  768. data/third_party/closure-library/closure/goog/gears/multipartformdata_test.html +221 -0
  769. data/third_party/closure-library/closure/goog/gears/statustype.js +37 -0
  770. data/third_party/closure-library/closure/goog/gears/urlcapture.js +370 -0
  771. data/third_party/closure-library/closure/goog/gears/urlcapture_test.html +392 -0
  772. data/third_party/closure-library/closure/goog/gears/worker.js +200 -0
  773. data/third_party/closure-library/closure/goog/gears/workerchannel.js +205 -0
  774. data/third_party/closure-library/closure/goog/gears/workerchannel_test.html +207 -0
  775. data/third_party/closure-library/closure/goog/gears/workerpool.js +240 -0
  776. data/third_party/closure-library/closure/goog/gears/workerpool_test.html +204 -0
  777. data/third_party/closure-library/closure/goog/graphics/abstractgraphics.js +441 -0
  778. data/third_party/closure-library/closure/goog/graphics/affinetransform.js +587 -0
  779. data/third_party/closure-library/closure/goog/graphics/affinetransform_test.html +360 -0
  780. data/third_party/closure-library/closure/goog/graphics/canvaselement.js +792 -0
  781. data/third_party/closure-library/closure/goog/graphics/canvasgraphics.js +665 -0
  782. data/third_party/closure-library/closure/goog/graphics/element.js +151 -0
  783. data/third_party/closure-library/closure/goog/graphics/ellipseelement.js +64 -0
  784. data/third_party/closure-library/closure/goog/graphics/ext/coordinates.js +159 -0
  785. data/third_party/closure-library/closure/goog/graphics/ext/coordinates_test.html +74 -0
  786. data/third_party/closure-library/closure/goog/graphics/ext/element.js +968 -0
  787. data/third_party/closure-library/closure/goog/graphics/ext/element_test.html +144 -0
  788. data/third_party/closure-library/closure/goog/graphics/ext/ellipse.js +59 -0
  789. data/third_party/closure-library/closure/goog/graphics/ext/ext.js +29 -0
  790. data/third_party/closure-library/closure/goog/graphics/ext/graphics.js +215 -0
  791. data/third_party/closure-library/closure/goog/graphics/ext/group.js +215 -0
  792. data/third_party/closure-library/closure/goog/graphics/ext/image.js +63 -0
  793. data/third_party/closure-library/closure/goog/graphics/ext/path.js +142 -0
  794. data/third_party/closure-library/closure/goog/graphics/ext/path_test.html +46 -0
  795. data/third_party/closure-library/closure/goog/graphics/ext/rectangle.js +54 -0
  796. data/third_party/closure-library/closure/goog/graphics/ext/shape.js +146 -0
  797. data/third_party/closure-library/closure/goog/graphics/ext/strokeandfillelement.js +70 -0
  798. data/third_party/closure-library/closure/goog/graphics/fill.js +46 -0
  799. data/third_party/closure-library/closure/goog/graphics/font.js +63 -0
  800. data/third_party/closure-library/closure/goog/graphics/graphics.js +135 -0
  801. data/third_party/closure-library/closure/goog/graphics/groupelement.js +59 -0
  802. data/third_party/closure-library/closure/goog/graphics/imageelement.js +70 -0
  803. data/third_party/closure-library/closure/goog/graphics/lineargradient.js +174 -0
  804. data/third_party/closure-library/closure/goog/graphics/path.js +512 -0
  805. data/third_party/closure-library/closure/goog/graphics/path_test.html +359 -0
  806. data/third_party/closure-library/closure/goog/graphics/pathelement.js +55 -0
  807. data/third_party/closure-library/closure/goog/graphics/paths.js +86 -0
  808. data/third_party/closure-library/closure/goog/graphics/paths_test.html +98 -0
  809. data/third_party/closure-library/closure/goog/graphics/rectelement.js +64 -0
  810. data/third_party/closure-library/closure/goog/graphics/solidfill.js +74 -0
  811. data/third_party/closure-library/closure/goog/graphics/solidfill_test.html +53 -0
  812. data/third_party/closure-library/closure/goog/graphics/stroke.js +67 -0
  813. data/third_party/closure-library/closure/goog/graphics/strokeandfillelement.js +115 -0
  814. data/third_party/closure-library/closure/goog/graphics/svgelement.js +279 -0
  815. data/third_party/closure-library/closure/goog/graphics/svggraphics.js +857 -0
  816. data/third_party/closure-library/closure/goog/graphics/svggraphics_test.html +83 -0
  817. data/third_party/closure-library/closure/goog/graphics/textelement.js +56 -0
  818. data/third_party/closure-library/closure/goog/graphics/vmlelement.js +433 -0
  819. data/third_party/closure-library/closure/goog/graphics/vmlgraphics.js +893 -0
  820. data/third_party/closure-library/closure/goog/history/event.js +54 -0
  821. data/third_party/closure-library/closure/goog/history/eventtype.js +30 -0
  822. data/third_party/closure-library/closure/goog/history/history.js +998 -0
  823. data/third_party/closure-library/closure/goog/history/history_test.html +19 -0
  824. data/third_party/closure-library/closure/goog/history/history_test.js +54 -0
  825. data/third_party/closure-library/closure/goog/history/html5history.js +303 -0
  826. data/third_party/closure-library/closure/goog/history/html5history_test.html +163 -0
  827. data/third_party/closure-library/closure/goog/i18n/bidi.js +806 -0
  828. data/third_party/closure-library/closure/goog/i18n/bidi_test.html +425 -0
  829. data/third_party/closure-library/closure/goog/i18n/bidiformatter.js +490 -0
  830. data/third_party/closure-library/closure/goog/i18n/bidiformatter_test.html +343 -0
  831. data/third_party/closure-library/closure/goog/i18n/charlistdecompressor.js +157 -0
  832. data/third_party/closure-library/closure/goog/i18n/charlistdecompressor_test.html +65 -0
  833. data/third_party/closure-library/closure/goog/i18n/charpickerdata.js +3185 -0
  834. data/third_party/closure-library/closure/goog/i18n/collation.js +58 -0
  835. data/third_party/closure-library/closure/goog/i18n/collation_test.html +63 -0
  836. data/third_party/closure-library/closure/goog/i18n/compactnumberformatsymbols.js +7973 -0
  837. data/third_party/closure-library/closure/goog/i18n/compactnumberformatsymbols_ext.js +27549 -0
  838. data/third_party/closure-library/closure/goog/i18n/currency.js +424 -0
  839. data/third_party/closure-library/closure/goog/i18n/currency_test.html +204 -0
  840. data/third_party/closure-library/closure/goog/i18n/currencycodemap.js +210 -0
  841. data/third_party/closure-library/closure/goog/i18n/datetimeformat.js +673 -0
  842. data/third_party/closure-library/closure/goog/i18n/datetimeformat_test.html +532 -0
  843. data/third_party/closure-library/closure/goog/i18n/datetimeparse.js +1129 -0
  844. data/third_party/closure-library/closure/goog/i18n/datetimeparse_test.html +766 -0
  845. data/third_party/closure-library/closure/goog/i18n/datetimepatterns.js +1854 -0
  846. data/third_party/closure-library/closure/goog/i18n/datetimepatternsext.js +10947 -0
  847. data/third_party/closure-library/closure/goog/i18n/datetimesymbols.js +3713 -0
  848. data/third_party/closure-library/closure/goog/i18n/datetimesymbolsext.js +21152 -0
  849. data/third_party/closure-library/closure/goog/i18n/graphemebreak.js +214 -0
  850. data/third_party/closure-library/closure/goog/i18n/graphemebreak_test.html +80 -0
  851. data/third_party/closure-library/closure/goog/i18n/messageformat.js +771 -0
  852. data/third_party/closure-library/closure/goog/i18n/messageformat_test.html +471 -0
  853. data/third_party/closure-library/closure/goog/i18n/mime.js +111 -0
  854. data/third_party/closure-library/closure/goog/i18n/mime_test.html +51 -0
  855. data/third_party/closure-library/closure/goog/i18n/numberformat.js +1228 -0
  856. data/third_party/closure-library/closure/goog/i18n/numberformat_test.html +985 -0
  857. data/third_party/closure-library/closure/goog/i18n/numberformatsymbols.js +3416 -0
  858. data/third_party/closure-library/closure/goog/i18n/numberformatsymbolsext.js +11887 -0
  859. data/third_party/closure-library/closure/goog/i18n/ordinalrules.js +589 -0
  860. data/third_party/closure-library/closure/goog/i18n/pluralrules.js +859 -0
  861. data/third_party/closure-library/closure/goog/i18n/timezone.js +340 -0
  862. data/third_party/closure-library/closure/goog/i18n/timezone_test.html +163 -0
  863. data/third_party/closure-library/closure/goog/i18n/uchar.js +1368 -0
  864. data/third_party/closure-library/closure/goog/i18n/uchar/localnamefetcher.js +73 -0
  865. data/third_party/closure-library/closure/goog/i18n/uchar/localnamefetcher_test.html +62 -0
  866. data/third_party/closure-library/closure/goog/i18n/uchar/namefetcher.js +70 -0
  867. data/third_party/closure-library/closure/goog/i18n/uchar/remotenamefetcher.js +281 -0
  868. data/third_party/closure-library/closure/goog/i18n/uchar/remotenamefetcher_test.html +111 -0
  869. data/third_party/closure-library/closure/goog/i18n/uchar_test.html +133 -0
  870. data/third_party/closure-library/closure/goog/images/blank.gif +0 -0
  871. data/third_party/closure-library/closure/goog/images/bubble_close.jpg +0 -0
  872. data/third_party/closure-library/closure/goog/images/bubble_left.gif +0 -0
  873. data/third_party/closure-library/closure/goog/images/bubble_right.gif +0 -0
  874. data/third_party/closure-library/closure/goog/images/button-bg.gif +0 -0
  875. data/third_party/closure-library/closure/goog/images/check-outline.gif +0 -0
  876. data/third_party/closure-library/closure/goog/images/check-sprite.gif +0 -0
  877. data/third_party/closure-library/closure/goog/images/check.gif +0 -0
  878. data/third_party/closure-library/closure/goog/images/close_box.gif +0 -0
  879. data/third_party/closure-library/closure/goog/images/color-swatch-tick.gif +0 -0
  880. data/third_party/closure-library/closure/goog/images/dialog_close_box.gif +0 -0
  881. data/third_party/closure-library/closure/goog/images/dimension-highlighted.png +0 -0
  882. data/third_party/closure-library/closure/goog/images/dimension-unhighlighted.png +0 -0
  883. data/third_party/closure-library/closure/goog/images/dropdn.gif +0 -0
  884. data/third_party/closure-library/closure/goog/images/dropdn_disabled.gif +0 -0
  885. data/third_party/closure-library/closure/goog/images/dropdown.gif +0 -0
  886. data/third_party/closure-library/closure/goog/images/gears_bluedot.gif +0 -0
  887. data/third_party/closure-library/closure/goog/images/gears_offline.gif +0 -0
  888. data/third_party/closure-library/closure/goog/images/gears_online.gif +0 -0
  889. data/third_party/closure-library/closure/goog/images/gears_paused.gif +0 -0
  890. data/third_party/closure-library/closure/goog/images/gears_syncing.gif +0 -0
  891. data/third_party/closure-library/closure/goog/images/hsv-sprite-sm.gif +0 -0
  892. data/third_party/closure-library/closure/goog/images/hsv-sprite-sm.png +0 -0
  893. data/third_party/closure-library/closure/goog/images/hsv-sprite.gif +0 -0
  894. data/third_party/closure-library/closure/goog/images/hsv-sprite.png +0 -0
  895. data/third_party/closure-library/closure/goog/images/hsva-sprite-sm.gif +0 -0
  896. data/third_party/closure-library/closure/goog/images/hsva-sprite-sm.png +0 -0
  897. data/third_party/closure-library/closure/goog/images/hsva-sprite.gif +0 -0
  898. data/third_party/closure-library/closure/goog/images/hsva-sprite.png +0 -0
  899. data/third_party/closure-library/closure/goog/images/left_anchor_bubble_bot.gif +0 -0
  900. data/third_party/closure-library/closure/goog/images/left_anchor_bubble_top.gif +0 -0
  901. data/third_party/closure-library/closure/goog/images/menu-arrows.gif +0 -0
  902. data/third_party/closure-library/closure/goog/images/minus.png +0 -0
  903. data/third_party/closure-library/closure/goog/images/no_anchor_bubble_bot.gif +0 -0
  904. data/third_party/closure-library/closure/goog/images/no_anchor_bubble_top.gif +0 -0
  905. data/third_party/closure-library/closure/goog/images/offlineicons.png +0 -0
  906. data/third_party/closure-library/closure/goog/images/plus.png +0 -0
  907. data/third_party/closure-library/closure/goog/images/ratingstars.gif +0 -0
  908. data/third_party/closure-library/closure/goog/images/right_anchor_bubble_bot.gif +0 -0
  909. data/third_party/closure-library/closure/goog/images/right_anchor_bubble_top.gif +0 -0
  910. data/third_party/closure-library/closure/goog/images/toolbar-bg.png +0 -0
  911. data/third_party/closure-library/closure/goog/images/toolbar-separator.gif +0 -0
  912. data/third_party/closure-library/closure/goog/images/toolbar_icons.gif +0 -0
  913. data/third_party/closure-library/closure/goog/images/tree/I.png +0 -0
  914. data/third_party/closure-library/closure/goog/images/tree/cleardot.gif +0 -0
  915. data/third_party/closure-library/closure/goog/images/tree/tree.gif +0 -0
  916. data/third_party/closure-library/closure/goog/images/tree/tree.png +0 -0
  917. data/third_party/closure-library/closure/goog/images/ui_controls.jpg +0 -0
  918. data/third_party/closure-library/closure/goog/iter/iter.js +702 -0
  919. data/third_party/closure-library/closure/goog/iter/iter_test.html +479 -0
  920. data/third_party/closure-library/closure/goog/json/evaljsonprocessor.js +66 -0
  921. data/third_party/closure-library/closure/goog/json/json.js +349 -0
  922. data/third_party/closure-library/closure/goog/json/json_perf.html +116 -0
  923. data/third_party/closure-library/closure/goog/json/json_test.html +569 -0
  924. data/third_party/closure-library/closure/goog/json/nativejsonprocessor.js +73 -0
  925. data/third_party/closure-library/closure/goog/json/processor.js +33 -0
  926. data/third_party/closure-library/closure/goog/json/processor_test.html +89 -0
  927. data/third_party/closure-library/closure/goog/labs/classdef/classdef.js +162 -0
  928. data/third_party/closure-library/closure/goog/labs/classdef/classdef_test.html +103 -0
  929. data/third_party/closure-library/closure/goog/labs/events/touch.js +82 -0
  930. data/third_party/closure-library/closure/goog/labs/events/touch_test.html +19 -0
  931. data/third_party/closure-library/closure/goog/labs/events/touch_test.js +96 -0
  932. data/third_party/closure-library/closure/goog/labs/format/csv.js +391 -0
  933. data/third_party/closure-library/closure/goog/labs/format/csv_test.html +20 -0
  934. data/third_party/closure-library/closure/goog/labs/format/csv_test.js +169 -0
  935. data/third_party/closure-library/closure/goog/labs/mock/mock.js +733 -0
  936. data/third_party/closure-library/closure/goog/labs/mock/mock_test.html +416 -0
  937. data/third_party/closure-library/closure/goog/labs/net/image.js +93 -0
  938. data/third_party/closure-library/closure/goog/labs/net/image_test.html +21 -0
  939. data/third_party/closure-library/closure/goog/labs/net/image_test.js +128 -0
  940. data/third_party/closure-library/closure/goog/labs/net/testdata/cleardot.gif +0 -0
  941. data/third_party/closure-library/closure/goog/labs/net/testdata/xhr_test_json.data +2 -0
  942. data/third_party/closure-library/closure/goog/labs/net/testdata/xhr_test_text.data +1 -0
  943. data/third_party/closure-library/closure/goog/labs/net/webchannel.js +188 -0
  944. data/third_party/closure-library/closure/goog/labs/net/webchannel/basetestchannel.js +639 -0
  945. data/third_party/closure-library/closure/goog/labs/net/webchannel/channel.js +195 -0
  946. data/third_party/closure-library/closure/goog/labs/net/webchannel/requeststats.js +391 -0
  947. data/third_party/closure-library/closure/goog/labs/net/webchannel/webchannelbase.js +2171 -0
  948. data/third_party/closure-library/closure/goog/labs/net/webchannel/webchannelbase_test.html +22 -0
  949. data/third_party/closure-library/closure/goog/labs/net/webchannel/webchannelbase_test.js +1400 -0
  950. data/third_party/closure-library/closure/goog/labs/net/webchannel/webchannelbasetransport.js +274 -0
  951. data/third_party/closure-library/closure/goog/labs/net/webchannel/webchannelbasetransport_test.html +228 -0
  952. data/third_party/closure-library/closure/goog/labs/net/webchannel/webchanneldebug.js +298 -0
  953. data/third_party/closure-library/closure/goog/labs/net/webchannel/webchannelrequest.js +1291 -0
  954. data/third_party/closure-library/closure/goog/labs/net/webchannel/webchannelrequest_test.html +287 -0
  955. data/third_party/closure-library/closure/goog/labs/net/webchanneltransport.js +74 -0
  956. data/third_party/closure-library/closure/goog/labs/net/webchanneltransportfactory.js +35 -0
  957. data/third_party/closure-library/closure/goog/labs/net/xhr.js +449 -0
  958. data/third_party/closure-library/closure/goog/labs/net/xhr_test.html +455 -0
  959. data/third_party/closure-library/closure/goog/labs/object/object.js +46 -0
  960. data/third_party/closure-library/closure/goog/labs/object/object_test.html +56 -0
  961. data/third_party/closure-library/closure/goog/labs/observe/notice.js +63 -0
  962. data/third_party/closure-library/closure/goog/labs/observe/observable.js +77 -0
  963. data/third_party/closure-library/closure/goog/labs/observe/observableset.js +180 -0
  964. data/third_party/closure-library/closure/goog/labs/observe/observableset_test.html +207 -0
  965. data/third_party/closure-library/closure/goog/labs/observe/observationset.js +156 -0
  966. data/third_party/closure-library/closure/goog/labs/observe/observationset_test.html +252 -0
  967. data/third_party/closure-library/closure/goog/labs/observe/observer.js +100 -0
  968. data/third_party/closure-library/closure/goog/labs/observe/observer_test.html +65 -0
  969. data/third_party/closure-library/closure/goog/labs/observe/simpleobservable.js +129 -0
  970. data/third_party/closure-library/closure/goog/labs/observe/simpleobservable_test.html +196 -0
  971. data/third_party/closure-library/closure/goog/labs/structs/map.js +339 -0
  972. data/third_party/closure-library/closure/goog/labs/structs/map_perf.js +201 -0
  973. data/third_party/closure-library/closure/goog/labs/structs/map_test.html +434 -0
  974. data/third_party/closure-library/closure/goog/labs/structs/multimap.js +279 -0
  975. data/third_party/closure-library/closure/goog/labs/structs/multimap_test.html +332 -0
  976. data/third_party/closure-library/closure/goog/labs/style/pixeldensitymonitor.js +178 -0
  977. data/third_party/closure-library/closure/goog/labs/style/pixeldensitymonitor_test.html +17 -0
  978. data/third_party/closure-library/closure/goog/labs/style/pixeldensitymonitor_test.js +146 -0
  979. data/third_party/closure-library/closure/goog/labs/testing/assertthat.js +59 -0
  980. data/third_party/closure-library/closure/goog/labs/testing/assertthat_test.html +73 -0
  981. data/third_party/closure-library/closure/goog/labs/testing/decoratormatcher.js +94 -0
  982. data/third_party/closure-library/closure/goog/labs/testing/decoratormatcher_test.html +43 -0
  983. data/third_party/closure-library/closure/goog/labs/testing/dictionarymatcher.js +266 -0
  984. data/third_party/closure-library/closure/goog/labs/testing/dictionarymatcher_test.html +70 -0
  985. data/third_party/closure-library/closure/goog/labs/testing/logicmatcher.js +206 -0
  986. data/third_party/closure-library/closure/goog/labs/testing/logicmatcher_test.html +59 -0
  987. data/third_party/closure-library/closure/goog/labs/testing/matcher.js +51 -0
  988. data/third_party/closure-library/closure/goog/labs/testing/numbermatcher.js +334 -0
  989. data/third_party/closure-library/closure/goog/labs/testing/numbermatcher_test.html +79 -0
  990. data/third_party/closure-library/closure/goog/labs/testing/objectmatcher.js +306 -0
  991. data/third_party/closure-library/closure/goog/labs/testing/objectmatcher_test.html +102 -0
  992. data/third_party/closure-library/closure/goog/labs/testing/stringmatcher.js +402 -0
  993. data/third_party/closure-library/closure/goog/labs/testing/stringmatcher_test.html +101 -0
  994. data/third_party/closure-library/closure/goog/labs/useragent/browser.js +189 -0
  995. data/third_party/closure-library/closure/goog/labs/useragent/browser_test.html +21 -0
  996. data/third_party/closure-library/closure/goog/labs/useragent/browser_test.js +193 -0
  997. data/third_party/closure-library/closure/goog/labs/useragent/device.js +64 -0
  998. data/third_party/closure-library/closure/goog/labs/useragent/device_test.html +21 -0
  999. data/third_party/closure-library/closure/goog/labs/useragent/device_test.js +88 -0
  1000. data/third_party/closure-library/closure/goog/labs/useragent/engine.js +144 -0
  1001. data/third_party/closure-library/closure/goog/labs/useragent/engine_test.html +21 -0
  1002. data/third_party/closure-library/closure/goog/labs/useragent/engine_test.js +164 -0
  1003. data/third_party/closure-library/closure/goog/labs/useragent/platform.js +193 -0
  1004. data/third_party/closure-library/closure/goog/labs/useragent/platform_test.html +21 -0
  1005. data/third_party/closure-library/closure/goog/labs/useragent/platform_test.js +256 -0
  1006. data/third_party/closure-library/closure/goog/labs/useragent/test_agents.js +272 -0
  1007. data/third_party/closure-library/closure/goog/labs/useragent/util.js +89 -0
  1008. data/third_party/closure-library/closure/goog/labs/useragent/util_test.html +22 -0
  1009. data/third_party/closure-library/closure/goog/labs/useragent/util_test.js +60 -0
  1010. data/third_party/closure-library/closure/goog/locale/countries.js +291 -0
  1011. data/third_party/closure-library/closure/goog/locale/countrylanguagenames_test.html +237 -0
  1012. data/third_party/closure-library/closure/goog/locale/defaultlocalenameconstants.js +907 -0
  1013. data/third_party/closure-library/closure/goog/locale/genericfontnames.js +73 -0
  1014. data/third_party/closure-library/closure/goog/locale/genericfontnames_test.html +97 -0
  1015. data/third_party/closure-library/closure/goog/locale/genericfontnamesdata.js +327 -0
  1016. data/third_party/closure-library/closure/goog/locale/locale.js +403 -0
  1017. data/third_party/closure-library/closure/goog/locale/nativenameconstants.js +1354 -0
  1018. data/third_party/closure-library/closure/goog/locale/scriptToLanguages.js +482 -0
  1019. data/third_party/closure-library/closure/goog/locale/timezonedetection.js +117 -0
  1020. data/third_party/closure-library/closure/goog/locale/timezonedetection_test.html +130 -0
  1021. data/third_party/closure-library/closure/goog/locale/timezonefingerprint.js +248 -0
  1022. data/third_party/closure-library/closure/goog/locale/timezonelist.js +131 -0
  1023. data/third_party/closure-library/closure/goog/locale/timezonelist_test.html +165 -0
  1024. data/third_party/closure-library/closure/goog/log/log.js +183 -0
  1025. data/third_party/closure-library/closure/goog/log/log_test.js +169 -0
  1026. data/third_party/closure-library/closure/goog/math/bezier.js +311 -0
  1027. data/third_party/closure-library/closure/goog/math/bezier_test.html +112 -0
  1028. data/third_party/closure-library/closure/goog/math/box.js +369 -0
  1029. data/third_party/closure-library/closure/goog/math/box_test.html +298 -0
  1030. data/third_party/closure-library/closure/goog/math/coordinate.js +233 -0
  1031. data/third_party/closure-library/closure/goog/math/coordinate3.js +169 -0
  1032. data/third_party/closure-library/closure/goog/math/coordinate3_test.html +204 -0
  1033. data/third_party/closure-library/closure/goog/math/coordinate_test.html +159 -0
  1034. data/third_party/closure-library/closure/goog/math/exponentialbackoff.js +103 -0
  1035. data/third_party/closure-library/closure/goog/math/exponentialbackoff_test.html +67 -0
  1036. data/third_party/closure-library/closure/goog/math/integer.js +737 -0
  1037. data/third_party/closure-library/closure/goog/math/integer_test.html +1653 -0
  1038. data/third_party/closure-library/closure/goog/math/interpolator/interpolator1.js +64 -0
  1039. data/third_party/closure-library/closure/goog/math/interpolator/linear1.js +82 -0
  1040. data/third_party/closure-library/closure/goog/math/interpolator/linear1_test.html +87 -0
  1041. data/third_party/closure-library/closure/goog/math/interpolator/pchip1.js +81 -0
  1042. data/third_party/closure-library/closure/goog/math/interpolator/pchip1_test.html +74 -0
  1043. data/third_party/closure-library/closure/goog/math/interpolator/spline1.js +202 -0
  1044. data/third_party/closure-library/closure/goog/math/interpolator/spline1_test.html +103 -0
  1045. data/third_party/closure-library/closure/goog/math/line.js +177 -0
  1046. data/third_party/closure-library/closure/goog/math/line_test.html +62 -0
  1047. data/third_party/closure-library/closure/goog/math/long.js +802 -0
  1048. data/third_party/closure-library/closure/goog/math/long_test.html +1571 -0
  1049. data/third_party/closure-library/closure/goog/math/math.js +387 -0
  1050. data/third_party/closure-library/closure/goog/math/math_test.html +292 -0
  1051. data/third_party/closure-library/closure/goog/math/matrix.js +675 -0
  1052. data/third_party/closure-library/closure/goog/math/matrix_test.html +434 -0
  1053. data/third_party/closure-library/closure/goog/math/range.js +144 -0
  1054. data/third_party/closure-library/closure/goog/math/range_test.html +103 -0
  1055. data/third_party/closure-library/closure/goog/math/rangeset.js +394 -0
  1056. data/third_party/closure-library/closure/goog/math/rangeset_test.html +664 -0
  1057. data/third_party/closure-library/closure/goog/math/rect.js +463 -0
  1058. data/third_party/closure-library/closure/goog/math/rect_test.html +444 -0
  1059. data/third_party/closure-library/closure/goog/math/size.js +206 -0
  1060. data/third_party/closure-library/closure/goog/math/size_test.html +180 -0
  1061. data/third_party/closure-library/closure/goog/math/tdma.js +73 -0
  1062. data/third_party/closure-library/closure/goog/math/tdma_test.html +33 -0
  1063. data/third_party/closure-library/closure/goog/math/vec2.js +283 -0
  1064. data/third_party/closure-library/closure/goog/math/vec2_test.html +225 -0
  1065. data/third_party/closure-library/closure/goog/math/vec3.js +308 -0
  1066. data/third_party/closure-library/closure/goog/math/vec3_test.html +221 -0
  1067. data/third_party/closure-library/closure/goog/memoize/memoize.js +102 -0
  1068. data/third_party/closure-library/closure/goog/memoize/memoize_test.html +157 -0
  1069. data/third_party/closure-library/closure/goog/messaging/abstractchannel.js +210 -0
  1070. data/third_party/closure-library/closure/goog/messaging/abstractchannel_test.html +89 -0
  1071. data/third_party/closure-library/closure/goog/messaging/bufferedchannel.js +287 -0
  1072. data/third_party/closure-library/closure/goog/messaging/bufferedchannel_test.html +283 -0
  1073. data/third_party/closure-library/closure/goog/messaging/deferredchannel.js +98 -0
  1074. data/third_party/closure-library/closure/goog/messaging/deferredchannel_test.html +113 -0
  1075. data/third_party/closure-library/closure/goog/messaging/loggerclient.js +131 -0
  1076. data/third_party/closure-library/closure/goog/messaging/loggerclient_test.html +102 -0
  1077. data/third_party/closure-library/closure/goog/messaging/loggerserver.js +98 -0
  1078. data/third_party/closure-library/closure/goog/messaging/loggerserver_test.html +101 -0
  1079. data/third_party/closure-library/closure/goog/messaging/messagechannel.js +116 -0
  1080. data/third_party/closure-library/closure/goog/messaging/messaging.js +34 -0
  1081. data/third_party/closure-library/closure/goog/messaging/messaging_test.html +42 -0
  1082. data/third_party/closure-library/closure/goog/messaging/multichannel.js +302 -0
  1083. data/third_party/closure-library/closure/goog/messaging/multichannel_test.html +122 -0
  1084. data/third_party/closure-library/closure/goog/messaging/portcaller.js +151 -0
  1085. data/third_party/closure-library/closure/goog/messaging/portcaller_test.html +65 -0
  1086. data/third_party/closure-library/closure/goog/messaging/portchannel.js +401 -0
  1087. data/third_party/closure-library/closure/goog/messaging/portchannel_test.html +392 -0
  1088. data/third_party/closure-library/closure/goog/messaging/portnetwork.js +78 -0
  1089. data/third_party/closure-library/closure/goog/messaging/portnetwork_test.html +74 -0
  1090. data/third_party/closure-library/closure/goog/messaging/portoperator.js +197 -0
  1091. data/third_party/closure-library/closure/goog/messaging/portoperator_test.html +112 -0
  1092. data/third_party/closure-library/closure/goog/messaging/respondingchannel.js +236 -0
  1093. data/third_party/closure-library/closure/goog/messaging/respondingchannel_test.html +161 -0
  1094. data/third_party/closure-library/closure/goog/messaging/testdata/portchannel_inner.html +28 -0
  1095. data/third_party/closure-library/closure/goog/messaging/testdata/portchannel_worker.js +37 -0
  1096. data/third_party/closure-library/closure/goog/messaging/testdata/portchannel_wrong_origin_inner.html +29 -0
  1097. data/third_party/closure-library/closure/goog/messaging/testdata/portnetwork_inner.html +34 -0
  1098. data/third_party/closure-library/closure/goog/messaging/testdata/portnetwork_worker1.js +32 -0
  1099. data/third_party/closure-library/closure/goog/messaging/testdata/portnetwork_worker2.js +32 -0
  1100. data/third_party/closure-library/closure/goog/module/abstractmoduleloader.js +56 -0
  1101. data/third_party/closure-library/closure/goog/module/basemodule.js +45 -0
  1102. data/third_party/closure-library/closure/goog/module/loader.js +269 -0
  1103. data/third_party/closure-library/closure/goog/module/module.js +166 -0
  1104. data/third_party/closure-library/closure/goog/module/moduleinfo.js +335 -0
  1105. data/third_party/closure-library/closure/goog/module/moduleinfo_test.html +108 -0
  1106. data/third_party/closure-library/closure/goog/module/moduleloadcallback.js +84 -0
  1107. data/third_party/closure-library/closure/goog/module/moduleloadcallback_test.html +57 -0
  1108. data/third_party/closure-library/closure/goog/module/moduleloader.js +462 -0
  1109. data/third_party/closure-library/closure/goog/module/moduleloader_test.html +30 -0
  1110. data/third_party/closure-library/closure/goog/module/moduleloader_test.js +438 -0
  1111. data/third_party/closure-library/closure/goog/module/modulemanager.js +1370 -0
  1112. data/third_party/closure-library/closure/goog/module/modulemanager_test.html +2143 -0
  1113. data/third_party/closure-library/closure/goog/module/testdata/modA_1.js +23 -0
  1114. data/third_party/closure-library/closure/goog/module/testdata/modA_2.js +27 -0
  1115. data/third_party/closure-library/closure/goog/module/testdata/modB_1.js +31 -0
  1116. data/third_party/closure-library/closure/goog/net/browserchannel.js +2757 -0
  1117. data/third_party/closure-library/closure/goog/net/browserchannel_test.html +1328 -0
  1118. data/third_party/closure-library/closure/goog/net/browsertestchannel.js +618 -0
  1119. data/third_party/closure-library/closure/goog/net/bulkloader.js +181 -0
  1120. data/third_party/closure-library/closure/goog/net/bulkloader_test.html +233 -0
  1121. data/third_party/closure-library/closure/goog/net/bulkloaderhelper.js +127 -0
  1122. data/third_party/closure-library/closure/goog/net/channeldebug.js +300 -0
  1123. data/third_party/closure-library/closure/goog/net/channelrequest.js +1312 -0
  1124. data/third_party/closure-library/closure/goog/net/channelrequest_test.html +280 -0
  1125. data/third_party/closure-library/closure/goog/net/cookies.js +370 -0
  1126. data/third_party/closure-library/closure/goog/net/cookies_test.html +266 -0
  1127. data/third_party/closure-library/closure/goog/net/crossdomainrpc.js +849 -0
  1128. data/third_party/closure-library/closure/goog/net/crossdomainrpc_test.css +7 -0
  1129. data/third_party/closure-library/closure/goog/net/crossdomainrpc_test.gif +0 -0
  1130. data/third_party/closure-library/closure/goog/net/crossdomainrpc_test.html +120 -0
  1131. data/third_party/closure-library/closure/goog/net/crossdomainrpc_test_response.html +59 -0
  1132. data/third_party/closure-library/closure/goog/net/errorcode.js +130 -0
  1133. data/third_party/closure-library/closure/goog/net/eventtype.js +37 -0
  1134. data/third_party/closure-library/closure/goog/net/filedownloader.js +743 -0
  1135. data/third_party/closure-library/closure/goog/net/filedownloader_test.html +372 -0
  1136. data/third_party/closure-library/closure/goog/net/httpstatus.js +111 -0
  1137. data/third_party/closure-library/closure/goog/net/iframe_xhr_test.html +147 -0
  1138. data/third_party/closure-library/closure/goog/net/iframe_xhr_test_response.html +17 -0
  1139. data/third_party/closure-library/closure/goog/net/iframeio.js +1355 -0
  1140. data/third_party/closure-library/closure/goog/net/iframeio_different_base_test.data +2 -0
  1141. data/third_party/closure-library/closure/goog/net/iframeio_different_base_test.html +44 -0
  1142. data/third_party/closure-library/closure/goog/net/iframeio_test.html +402 -0
  1143. data/third_party/closure-library/closure/goog/net/iframeloadmonitor.js +200 -0
  1144. data/third_party/closure-library/closure/goog/net/iframeloadmonitor_test.html +113 -0
  1145. data/third_party/closure-library/closure/goog/net/iframeloadmonitor_test_frame.html +12 -0
  1146. data/third_party/closure-library/closure/goog/net/iframeloadmonitor_test_frame2.html +12 -0
  1147. data/third_party/closure-library/closure/goog/net/iframeloadmonitor_test_frame3.html +12 -0
  1148. data/third_party/closure-library/closure/goog/net/imageloader.js +292 -0
  1149. data/third_party/closure-library/closure/goog/net/imageloader_test.html +302 -0
  1150. data/third_party/closure-library/closure/goog/net/imageloader_testimg1.gif +0 -0
  1151. data/third_party/closure-library/closure/goog/net/imageloader_testimg2.gif +0 -0
  1152. data/third_party/closure-library/closure/goog/net/imageloader_testimg3.gif +0 -0
  1153. data/third_party/closure-library/closure/goog/net/ipaddress.js +511 -0
  1154. data/third_party/closure-library/closure/goog/net/ipaddress_test.html +227 -0
  1155. data/third_party/closure-library/closure/goog/net/jsloader.js +366 -0
  1156. data/third_party/closure-library/closure/goog/net/jsloader_test.html +142 -0
  1157. data/third_party/closure-library/closure/goog/net/jsonp.js +338 -0
  1158. data/third_party/closure-library/closure/goog/net/jsonp_test.html +327 -0
  1159. data/third_party/closure-library/closure/goog/net/mockiframeio.js +319 -0
  1160. data/third_party/closure-library/closure/goog/net/multiiframeloadmonitor.js +117 -0
  1161. data/third_party/closure-library/closure/goog/net/multiiframeloadmonitor_test.html +172 -0
  1162. data/third_party/closure-library/closure/goog/net/networkstatusmonitor.js +47 -0
  1163. data/third_party/closure-library/closure/goog/net/networktester.js +383 -0
  1164. data/third_party/closure-library/closure/goog/net/networktester_test.html +227 -0
  1165. data/third_party/closure-library/closure/goog/net/testdata/jsloader_test1.js +23 -0
  1166. data/third_party/closure-library/closure/goog/net/testdata/jsloader_test2.js +23 -0
  1167. data/third_party/closure-library/closure/goog/net/testdata/jsloader_test3.js +23 -0
  1168. data/third_party/closure-library/closure/goog/net/testdata/jsloader_test4.js +23 -0
  1169. data/third_party/closure-library/closure/goog/net/tmpnetwork.js +164 -0
  1170. data/third_party/closure-library/closure/goog/net/websocket.js +505 -0
  1171. data/third_party/closure-library/closure/goog/net/websocket_test.html +367 -0
  1172. data/third_party/closure-library/closure/goog/net/wrapperxmlhttpfactory.js +68 -0
  1173. data/third_party/closure-library/closure/goog/net/xhrio.js +1191 -0
  1174. data/third_party/closure-library/closure/goog/net/xhrio_test.html +732 -0
  1175. data/third_party/closure-library/closure/goog/net/xhriopool.js +80 -0
  1176. data/third_party/closure-library/closure/goog/net/xhrmanager.js +787 -0
  1177. data/third_party/closure-library/closure/goog/net/xhrmanager_test.html +123 -0
  1178. data/third_party/closure-library/closure/goog/net/xmlhttp.js +228 -0
  1179. data/third_party/closure-library/closure/goog/net/xmlhttpfactory.js +64 -0
  1180. data/third_party/closure-library/closure/goog/net/xpc/crosspagechannel.js +805 -0
  1181. data/third_party/closure-library/closure/goog/net/xpc/crosspagechannel_test.html +1024 -0
  1182. data/third_party/closure-library/closure/goog/net/xpc/crosspagechannelrole.js +30 -0
  1183. data/third_party/closure-library/closure/goog/net/xpc/frameelementmethodtransport.js +254 -0
  1184. data/third_party/closure-library/closure/goog/net/xpc/iframepollingtransport.js +921 -0
  1185. data/third_party/closure-library/closure/goog/net/xpc/iframepollingtransport_test.html +295 -0
  1186. data/third_party/closure-library/closure/goog/net/xpc/iframerelaytransport.js +394 -0
  1187. data/third_party/closure-library/closure/goog/net/xpc/nativemessagingtransport.js +649 -0
  1188. data/third_party/closure-library/closure/goog/net/xpc/nativemessagingtransport_test.html +304 -0
  1189. data/third_party/closure-library/closure/goog/net/xpc/nixtransport.js +479 -0
  1190. data/third_party/closure-library/closure/goog/net/xpc/relay.js +72 -0
  1191. data/third_party/closure-library/closure/goog/net/xpc/testdata/access_checker.html +29 -0
  1192. data/third_party/closure-library/closure/goog/net/xpc/testdata/inner_peer.html +96 -0
  1193. data/third_party/closure-library/closure/goog/net/xpc/transport.js +105 -0
  1194. data/third_party/closure-library/closure/goog/net/xpc/xpc.js +293 -0
  1195. data/third_party/closure-library/closure/goog/object/object.js +635 -0
  1196. data/third_party/closure-library/closure/goog/object/object_test.html +466 -0
  1197. data/third_party/closure-library/closure/goog/positioning/absoluteposition.js +74 -0
  1198. data/third_party/closure-library/closure/goog/positioning/abstractposition.js +48 -0
  1199. data/third_party/closure-library/closure/goog/positioning/anchoredposition.js +92 -0
  1200. data/third_party/closure-library/closure/goog/positioning/anchoredposition_test.html +77 -0
  1201. data/third_party/closure-library/closure/goog/positioning/anchoredviewportposition.js +191 -0
  1202. data/third_party/closure-library/closure/goog/positioning/anchoredviewportposition_test.html +174 -0
  1203. data/third_party/closure-library/closure/goog/positioning/anchoredviewportposition_test_iframe.html +35 -0
  1204. data/third_party/closure-library/closure/goog/positioning/clientposition.js +88 -0
  1205. data/third_party/closure-library/closure/goog/positioning/clientposition_test.html +22 -0
  1206. data/third_party/closure-library/closure/goog/positioning/clientposition_test.js +122 -0
  1207. data/third_party/closure-library/closure/goog/positioning/menuanchoredposition.js +71 -0
  1208. data/third_party/closure-library/closure/goog/positioning/menuanchoredposition_test.html +119 -0
  1209. data/third_party/closure-library/closure/goog/positioning/positioning.js +557 -0
  1210. data/third_party/closure-library/closure/goog/positioning/positioning_test.html +199 -0
  1211. data/third_party/closure-library/closure/goog/positioning/positioning_test.js +1168 -0
  1212. data/third_party/closure-library/closure/goog/positioning/positioning_test_iframe1.html +16 -0
  1213. data/third_party/closure-library/closure/goog/positioning/positioning_test_iframe2.html +13 -0
  1214. data/third_party/closure-library/closure/goog/positioning/positioning_test_quirk.html +9 -0
  1215. data/third_party/closure-library/closure/goog/positioning/positioning_test_standard.html +13 -0
  1216. data/third_party/closure-library/closure/goog/positioning/viewportclientposition.js +121 -0
  1217. data/third_party/closure-library/closure/goog/positioning/viewportclientposition_test.html +189 -0
  1218. data/third_party/closure-library/closure/goog/positioning/viewportposition.js +64 -0
  1219. data/third_party/closure-library/closure/goog/proto/proto.js +44 -0
  1220. data/third_party/closure-library/closure/goog/proto/serializer.js +69 -0
  1221. data/third_party/closure-library/closure/goog/proto/serializer_test.html +43 -0
  1222. data/third_party/closure-library/closure/goog/proto2/descriptor.js +200 -0
  1223. data/third_party/closure-library/closure/goog/proto2/descriptor_test.html +60 -0
  1224. data/third_party/closure-library/closure/goog/proto2/fielddescriptor.js +291 -0
  1225. data/third_party/closure-library/closure/goog/proto2/fielddescriptor_test.html +132 -0
  1226. data/third_party/closure-library/closure/goog/proto2/lazydeserializer.js +70 -0
  1227. data/third_party/closure-library/closure/goog/proto2/message.js +840 -0
  1228. data/third_party/closure-library/closure/goog/proto2/message_test.html +467 -0
  1229. data/third_party/closure-library/closure/goog/proto2/objectserializer.js +159 -0
  1230. data/third_party/closure-library/closure/goog/proto2/objectserializer_test.html +489 -0
  1231. data/third_party/closure-library/closure/goog/proto2/package_test.pb.js +166 -0
  1232. data/third_party/closure-library/closure/goog/proto2/pbliteserializer.js +193 -0
  1233. data/third_party/closure-library/closure/goog/proto2/pbliteserializer_test.html +504 -0
  1234. data/third_party/closure-library/closure/goog/proto2/proto_test.html +693 -0
  1235. data/third_party/closure-library/closure/goog/proto2/serializer.js +174 -0
  1236. data/third_party/closure-library/closure/goog/proto2/test.pb.js +2876 -0
  1237. data/third_party/closure-library/closure/goog/proto2/textformatserializer.js +995 -0
  1238. data/third_party/closure-library/closure/goog/proto2/textformatserializer_test.html +21 -0
  1239. data/third_party/closure-library/closure/goog/proto2/textformatserializer_test.js +629 -0
  1240. data/third_party/closure-library/closure/goog/proto2/util.js +54 -0
  1241. data/third_party/closure-library/closure/goog/pubsub/pubsub.js +326 -0
  1242. data/third_party/closure-library/closure/goog/pubsub/pubsub_perf.html +298 -0
  1243. data/third_party/closure-library/closure/goog/pubsub/pubsub_test.html +635 -0
  1244. data/third_party/closure-library/closure/goog/reflect/reflect.js +77 -0
  1245. data/third_party/closure-library/closure/goog/result/chain_test.html +236 -0
  1246. data/third_party/closure-library/closure/goog/result/combine_test.html +229 -0
  1247. data/third_party/closure-library/closure/goog/result/deferredadaptor.js +57 -0
  1248. data/third_party/closure-library/closure/goog/result/deferredadaptor_test.html +86 -0
  1249. data/third_party/closure-library/closure/goog/result/dependentresult.js +44 -0
  1250. data/third_party/closure-library/closure/goog/result/result_interface.js +109 -0
  1251. data/third_party/closure-library/closure/goog/result/resultutil.js +550 -0
  1252. data/third_party/closure-library/closure/goog/result/resultutil_test.html +46 -0
  1253. data/third_party/closure-library/closure/goog/result/simpleresult.js +217 -0
  1254. data/third_party/closure-library/closure/goog/result/simpleresult_test.html +271 -0
  1255. data/third_party/closure-library/closure/goog/result/transform_test.html +153 -0
  1256. data/third_party/closure-library/closure/goog/result/wait_test.html +211 -0
  1257. data/third_party/closure-library/closure/goog/soy/data.js +132 -0
  1258. data/third_party/closure-library/closure/goog/soy/renderer.js +266 -0
  1259. data/third_party/closure-library/closure/goog/soy/renderer_test.html +172 -0
  1260. data/third_party/closure-library/closure/goog/soy/soy.js +205 -0
  1261. data/third_party/closure-library/closure/goog/soy/soy_test.html +230 -0
  1262. data/third_party/closure-library/closure/goog/soy/soy_test.js +175 -0
  1263. data/third_party/closure-library/closure/goog/spell/spellcheck.js +475 -0
  1264. data/third_party/closure-library/closure/goog/spell/spellcheck_test.html +112 -0
  1265. data/third_party/closure-library/closure/goog/stats/basicstat.js +271 -0
  1266. data/third_party/closure-library/closure/goog/stats/basicstat_test.html +167 -0
  1267. data/third_party/closure-library/closure/goog/storage/collectablestorage.js +100 -0
  1268. data/third_party/closure-library/closure/goog/storage/collectablestorage_test.html +76 -0
  1269. data/third_party/closure-library/closure/goog/storage/encryptedstorage.js +201 -0
  1270. data/third_party/closure-library/closure/goog/storage/encryptedstorage_test.html +160 -0
  1271. data/third_party/closure-library/closure/goog/storage/errorcode.js +30 -0
  1272. data/third_party/closure-library/closure/goog/storage/expiringstorage.js +142 -0
  1273. data/third_party/closure-library/closure/goog/storage/expiringstorage_test.html +90 -0
  1274. data/third_party/closure-library/closure/goog/storage/mechanism/errorcode.js +31 -0
  1275. data/third_party/closure-library/closure/goog/storage/mechanism/errorhandlingmechanism.js +128 -0
  1276. data/third_party/closure-library/closure/goog/storage/mechanism/errorhandlingmechanism_test.html +83 -0
  1277. data/third_party/closure-library/closure/goog/storage/mechanism/html5localstorage.js +45 -0
  1278. data/third_party/closure-library/closure/goog/storage/mechanism/html5localstorage_test.html +60 -0
  1279. data/third_party/closure-library/closure/goog/storage/mechanism/html5sessionstorage.js +46 -0
  1280. data/third_party/closure-library/closure/goog/storage/mechanism/html5sessionstorage_test.html +61 -0
  1281. data/third_party/closure-library/closure/goog/storage/mechanism/html5webstorage.js +176 -0
  1282. data/third_party/closure-library/closure/goog/storage/mechanism/html5webstorage_test.html +122 -0
  1283. data/third_party/closure-library/closure/goog/storage/mechanism/ieuserdata.js +283 -0
  1284. data/third_party/closure-library/closure/goog/storage/mechanism/ieuserdata_test.html +78 -0
  1285. data/third_party/closure-library/closure/goog/storage/mechanism/iterablemechanism.js +86 -0
  1286. data/third_party/closure-library/closure/goog/storage/mechanism/iterablemechanismtester.js +117 -0
  1287. data/third_party/closure-library/closure/goog/storage/mechanism/mechanism.js +56 -0
  1288. data/third_party/closure-library/closure/goog/storage/mechanism/mechanismfactory.js +113 -0
  1289. data/third_party/closure-library/closure/goog/storage/mechanism/mechanismfactory_test.html +58 -0
  1290. data/third_party/closure-library/closure/goog/storage/mechanism/mechanismseparationtester.js +91 -0
  1291. data/third_party/closure-library/closure/goog/storage/mechanism/mechanismsharingtester.js +87 -0
  1292. data/third_party/closure-library/closure/goog/storage/mechanism/mechanismtester.js +200 -0
  1293. data/third_party/closure-library/closure/goog/storage/mechanism/prefixedmechanism.js +97 -0
  1294. data/third_party/closure-library/closure/goog/storage/mechanism/prefixedmechanism_test.html +66 -0
  1295. data/third_party/closure-library/closure/goog/storage/richstorage.js +149 -0
  1296. data/third_party/closure-library/closure/goog/storage/richstorage_test.html +87 -0
  1297. data/third_party/closure-library/closure/goog/storage/storage.js +111 -0
  1298. data/third_party/closure-library/closure/goog/storage/storage_test.html +64 -0
  1299. data/third_party/closure-library/closure/goog/storage/storage_test.js +60 -0
  1300. data/third_party/closure-library/closure/goog/string/linkify.js +236 -0
  1301. data/third_party/closure-library/closure/goog/string/linkify_test.html +441 -0
  1302. data/third_party/closure-library/closure/goog/string/newlines.js +153 -0
  1303. data/third_party/closure-library/closure/goog/string/newlines_test.html +19 -0
  1304. data/third_party/closure-library/closure/goog/string/newlines_test.js +87 -0
  1305. data/third_party/closure-library/closure/goog/string/parser.js +38 -0
  1306. data/third_party/closure-library/closure/goog/string/path.js +169 -0
  1307. data/third_party/closure-library/closure/goog/string/path_test.html +111 -0
  1308. data/third_party/closure-library/closure/goog/string/string.js +1378 -0
  1309. data/third_party/closure-library/closure/goog/string/string_test.html +19 -0
  1310. data/third_party/closure-library/closure/goog/string/string_test.js +1173 -0
  1311. data/third_party/closure-library/closure/goog/string/stringbuffer.js +103 -0
  1312. data/third_party/closure-library/closure/goog/string/stringbuffer_test.html +101 -0
  1313. data/third_party/closure-library/closure/goog/string/stringformat.js +251 -0
  1314. data/third_party/closure-library/closure/goog/string/stringformat_test.html +223 -0
  1315. data/third_party/closure-library/closure/goog/string/stringifier.js +38 -0
  1316. data/third_party/closure-library/closure/goog/structs/avltree.js +835 -0
  1317. data/third_party/closure-library/closure/goog/structs/avltree_test.html +303 -0
  1318. data/third_party/closure-library/closure/goog/structs/circularbuffer.js +223 -0
  1319. data/third_party/closure-library/closure/goog/structs/circularbuffer_test.html +105 -0
  1320. data/third_party/closure-library/closure/goog/structs/collection.js +55 -0
  1321. data/third_party/closure-library/closure/goog/structs/collection_test.html +57 -0
  1322. data/third_party/closure-library/closure/goog/structs/heap.js +333 -0
  1323. data/third_party/closure-library/closure/goog/structs/heap_test.html +220 -0
  1324. data/third_party/closure-library/closure/goog/structs/inversionmap.js +159 -0
  1325. data/third_party/closure-library/closure/goog/structs/inversionmap_test.html +157 -0
  1326. data/third_party/closure-library/closure/goog/structs/linkedmap.js +473 -0
  1327. data/third_party/closure-library/closure/goog/structs/linkedmap_test.html +300 -0
  1328. data/third_party/closure-library/closure/goog/structs/map.js +449 -0
  1329. data/third_party/closure-library/closure/goog/structs/map_test.html +430 -0
  1330. data/third_party/closure-library/closure/goog/structs/node.js +74 -0
  1331. data/third_party/closure-library/closure/goog/structs/pool.js +381 -0
  1332. data/third_party/closure-library/closure/goog/structs/pool_test.html +291 -0
  1333. data/third_party/closure-library/closure/goog/structs/prioritypool.js +184 -0
  1334. data/third_party/closure-library/closure/goog/structs/prioritypool_test.html +588 -0
  1335. data/third_party/closure-library/closure/goog/structs/priorityqueue.js +64 -0
  1336. data/third_party/closure-library/closure/goog/structs/priorityqueue_test.html +179 -0
  1337. data/third_party/closure-library/closure/goog/structs/quadtree.js +571 -0
  1338. data/third_party/closure-library/closure/goog/structs/quadtree_test.html +179 -0
  1339. data/third_party/closure-library/closure/goog/structs/queue.js +157 -0
  1340. data/third_party/closure-library/closure/goog/structs/queue_test.html +140 -0
  1341. data/third_party/closure-library/closure/goog/structs/set.js +274 -0
  1342. data/third_party/closure-library/closure/goog/structs/set_perf.html +271 -0
  1343. data/third_party/closure-library/closure/goog/structs/set_test.html +581 -0
  1344. data/third_party/closure-library/closure/goog/structs/simplepool.js +205 -0
  1345. data/third_party/closure-library/closure/goog/structs/stringset.js +403 -0
  1346. data/third_party/closure-library/closure/goog/structs/stringset_test.html +265 -0
  1347. data/third_party/closure-library/closure/goog/structs/structs.js +351 -0
  1348. data/third_party/closure-library/closure/goog/structs/structs_test.html +1050 -0
  1349. data/third_party/closure-library/closure/goog/structs/treenode.js +428 -0
  1350. data/third_party/closure-library/closure/goog/structs/treenode_test.html +370 -0
  1351. data/third_party/closure-library/closure/goog/structs/trie.js +368 -0
  1352. data/third_party/closure-library/closure/goog/structs/trie_test.html +378 -0
  1353. data/third_party/closure-library/closure/goog/style/bidi.js +182 -0
  1354. data/third_party/closure-library/closure/goog/style/bidi_test.html +211 -0
  1355. data/third_party/closure-library/closure/goog/style/cursor.js +115 -0
  1356. data/third_party/closure-library/closure/goog/style/cursor_test.html +132 -0
  1357. data/third_party/closure-library/closure/goog/style/style.js +2087 -0
  1358. data/third_party/closure-library/closure/goog/style/style_quirks_test.html +530 -0
  1359. data/third_party/closure-library/closure/goog/style/style_test.html +518 -0
  1360. data/third_party/closure-library/closure/goog/style/style_test.js +2602 -0
  1361. data/third_party/closure-library/closure/goog/style/style_test_iframe_quirk.html +27 -0
  1362. data/third_party/closure-library/closure/goog/style/style_test_iframe_standard.html +30 -0
  1363. data/third_party/closure-library/closure/goog/style/style_test_quirk.html +9 -0
  1364. data/third_party/closure-library/closure/goog/style/style_test_standard.html +11 -0
  1365. data/third_party/closure-library/closure/goog/style/style_webkit_scrollbars_test.html +79 -0
  1366. data/third_party/closure-library/closure/goog/style/stylescrollbartester.js +78 -0
  1367. data/third_party/closure-library/closure/goog/style/transition.js +138 -0
  1368. data/third_party/closure-library/closure/goog/style/transition_test.html +124 -0
  1369. data/third_party/closure-library/closure/goog/testing/asserts.js +1243 -0
  1370. data/third_party/closure-library/closure/goog/testing/asserts_test.html +1150 -0
  1371. data/third_party/closure-library/closure/goog/testing/async/mockcontrol.js +174 -0
  1372. data/third_party/closure-library/closure/goog/testing/async/mockcontrol_test.html +223 -0
  1373. data/third_party/closure-library/closure/goog/testing/asynctestcase.js +824 -0
  1374. data/third_party/closure-library/closure/goog/testing/asynctestcase_async_test.html +102 -0
  1375. data/third_party/closure-library/closure/goog/testing/asynctestcase_noasync_test.html +98 -0
  1376. data/third_party/closure-library/closure/goog/testing/asynctestcase_test.html +58 -0
  1377. data/third_party/closure-library/closure/goog/testing/benchmark.js +88 -0
  1378. data/third_party/closure-library/closure/goog/testing/continuationtestcase.js +689 -0
  1379. data/third_party/closure-library/closure/goog/testing/continuationtestcase_test.html +352 -0
  1380. data/third_party/closure-library/closure/goog/testing/deferredtestcase.js +155 -0
  1381. data/third_party/closure-library/closure/goog/testing/deferredtestcase_test.html +140 -0
  1382. data/third_party/closure-library/closure/goog/testing/dom.js +608 -0
  1383. data/third_party/closure-library/closure/goog/testing/dom_test.html +438 -0
  1384. data/third_party/closure-library/closure/goog/testing/editor/dom.js +293 -0
  1385. data/third_party/closure-library/closure/goog/testing/editor/dom_test.html +295 -0
  1386. data/third_party/closure-library/closure/goog/testing/editor/fieldmock.js +99 -0
  1387. data/third_party/closure-library/closure/goog/testing/editor/testhelper.js +176 -0
  1388. data/third_party/closure-library/closure/goog/testing/editor/testhelper_test.html +177 -0
  1389. data/third_party/closure-library/closure/goog/testing/events/eventobserver.js +86 -0
  1390. data/third_party/closure-library/closure/goog/testing/events/eventobserver_test.html +70 -0
  1391. data/third_party/closure-library/closure/goog/testing/events/events.js +713 -0
  1392. data/third_party/closure-library/closure/goog/testing/events/events_test.html +614 -0
  1393. data/third_party/closure-library/closure/goog/testing/events/matchers.js +41 -0
  1394. data/third_party/closure-library/closure/goog/testing/events/matchers_test.html +40 -0
  1395. data/third_party/closure-library/closure/goog/testing/events/onlinehandler.js +64 -0
  1396. data/third_party/closure-library/closure/goog/testing/events/onlinehandler_test.html +89 -0
  1397. data/third_party/closure-library/closure/goog/testing/expectedfailures.js +236 -0
  1398. data/third_party/closure-library/closure/goog/testing/expectedfailures_test.html +122 -0
  1399. data/third_party/closure-library/closure/goog/testing/fs/blob.js +116 -0
  1400. data/third_party/closure-library/closure/goog/testing/fs/blob_test.html +65 -0
  1401. data/third_party/closure-library/closure/goog/testing/fs/directoryentry_test.html +313 -0
  1402. data/third_party/closure-library/closure/goog/testing/fs/entry.js +621 -0
  1403. data/third_party/closure-library/closure/goog/testing/fs/entry_test.html +227 -0
  1404. data/third_party/closure-library/closure/goog/testing/fs/file.js +52 -0
  1405. data/third_party/closure-library/closure/goog/testing/fs/fileentry_test.html +93 -0
  1406. data/third_party/closure-library/closure/goog/testing/fs/filereader.js +272 -0
  1407. data/third_party/closure-library/closure/goog/testing/fs/filereader_test.html +236 -0
  1408. data/third_party/closure-library/closure/goog/testing/fs/filesystem.js +63 -0
  1409. data/third_party/closure-library/closure/goog/testing/fs/filewriter.js +261 -0
  1410. data/third_party/closure-library/closure/goog/testing/fs/filewriter_test.html +325 -0
  1411. data/third_party/closure-library/closure/goog/testing/fs/fs.js +147 -0
  1412. data/third_party/closure-library/closure/goog/testing/fs/fs_test.html +53 -0
  1413. data/third_party/closure-library/closure/goog/testing/fs/integration_test.html +223 -0
  1414. data/third_party/closure-library/closure/goog/testing/fs/progressevent.js +81 -0
  1415. data/third_party/closure-library/closure/goog/testing/functionmock.js +177 -0
  1416. data/third_party/closure-library/closure/goog/testing/functionmock_test.html +511 -0
  1417. data/third_party/closure-library/closure/goog/testing/graphics.js +64 -0
  1418. data/third_party/closure-library/closure/goog/testing/i18n/asserts.js +77 -0
  1419. data/third_party/closure-library/closure/goog/testing/i18n/asserts_test.html +19 -0
  1420. data/third_party/closure-library/closure/goog/testing/i18n/asserts_test.js +67 -0
  1421. data/third_party/closure-library/closure/goog/testing/jsunit.js +156 -0
  1422. data/third_party/closure-library/closure/goog/testing/loosemock.js +240 -0
  1423. data/third_party/closure-library/closure/goog/testing/loosemock_test.html +343 -0
  1424. data/third_party/closure-library/closure/goog/testing/messaging/mockmessagechannel.js +79 -0
  1425. data/third_party/closure-library/closure/goog/testing/messaging/mockmessageevent.js +100 -0
  1426. data/third_party/closure-library/closure/goog/testing/messaging/mockmessageport.js +85 -0
  1427. data/third_party/closure-library/closure/goog/testing/messaging/mockportnetwork.js +65 -0
  1428. data/third_party/closure-library/closure/goog/testing/mock.js +619 -0
  1429. data/third_party/closure-library/closure/goog/testing/mock_test.html +264 -0
  1430. data/third_party/closure-library/closure/goog/testing/mockclassfactory.js +578 -0
  1431. data/third_party/closure-library/closure/goog/testing/mockclassfactory_test.html +241 -0
  1432. data/third_party/closure-library/closure/goog/testing/mockclock.js +520 -0
  1433. data/third_party/closure-library/closure/goog/testing/mockclock_test.html +504 -0
  1434. data/third_party/closure-library/closure/goog/testing/mockcontrol.js +219 -0
  1435. data/third_party/closure-library/closure/goog/testing/mockcontrol_test.html +127 -0
  1436. data/third_party/closure-library/closure/goog/testing/mockinterface.js +45 -0
  1437. data/third_party/closure-library/closure/goog/testing/mockmatchers.js +395 -0
  1438. data/third_party/closure-library/closure/goog/testing/mockmatchers_test.html +388 -0
  1439. data/third_party/closure-library/closure/goog/testing/mockrandom.js +126 -0
  1440. data/third_party/closure-library/closure/goog/testing/mockrandom_test.html +56 -0
  1441. data/third_party/closure-library/closure/goog/testing/mockrange.js +66 -0
  1442. data/third_party/closure-library/closure/goog/testing/mockrange_test.html +41 -0
  1443. data/third_party/closure-library/closure/goog/testing/mockstorage.js +107 -0
  1444. data/third_party/closure-library/closure/goog/testing/mockstorage_test.html +78 -0
  1445. data/third_party/closure-library/closure/goog/testing/mockuseragent.js +141 -0
  1446. data/third_party/closure-library/closure/goog/testing/mockuseragent_test.html +59 -0
  1447. data/third_party/closure-library/closure/goog/testing/multitestrunner.js +1439 -0
  1448. data/third_party/closure-library/closure/goog/testing/net/xhrio.js +709 -0
  1449. data/third_party/closure-library/closure/goog/testing/net/xhrio_test.html +384 -0
  1450. data/third_party/closure-library/closure/goog/testing/net/xhriopool.js +64 -0
  1451. data/third_party/closure-library/closure/goog/testing/objectpropertystring.js +67 -0
  1452. data/third_party/closure-library/closure/goog/testing/performancetable.css +46 -0
  1453. data/third_party/closure-library/closure/goog/testing/performancetable.js +190 -0
  1454. data/third_party/closure-library/closure/goog/testing/performancetimer.js +405 -0
  1455. data/third_party/closure-library/closure/goog/testing/performancetimer_test.html +201 -0
  1456. data/third_party/closure-library/closure/goog/testing/propertyreplacer.js +243 -0
  1457. data/third_party/closure-library/closure/goog/testing/propertyreplacer_test.html +368 -0
  1458. data/third_party/closure-library/closure/goog/testing/proto2/proto2.js +127 -0
  1459. data/third_party/closure-library/closure/goog/testing/proto2/proto2_test.html +117 -0
  1460. data/third_party/closure-library/closure/goog/testing/pseudorandom.js +179 -0
  1461. data/third_party/closure-library/closure/goog/testing/pseudorandom_test.html +98 -0
  1462. data/third_party/closure-library/closure/goog/testing/recordfunction.js +201 -0
  1463. data/third_party/closure-library/closure/goog/testing/recordfunction_test.html +159 -0
  1464. data/third_party/closure-library/closure/goog/testing/shardingtestcase.js +122 -0
  1465. data/third_party/closure-library/closure/goog/testing/shardingtestcase_test.html +34 -0
  1466. data/third_party/closure-library/closure/goog/testing/singleton.js +46 -0
  1467. data/third_party/closure-library/closure/goog/testing/singleton_test.html +39 -0
  1468. data/third_party/closure-library/closure/goog/testing/stacktrace.js +555 -0
  1469. data/third_party/closure-library/closure/goog/testing/stacktrace_test.html +327 -0
  1470. data/third_party/closure-library/closure/goog/testing/storage/fakemechanism.js +66 -0
  1471. data/third_party/closure-library/closure/goog/testing/strictmock.js +128 -0
  1472. data/third_party/closure-library/closure/goog/testing/strictmock_test.html +412 -0
  1473. data/third_party/closure-library/closure/goog/testing/style/layoutasserts.js +310 -0
  1474. data/third_party/closure-library/closure/goog/testing/style/layoutasserts_test.html +269 -0
  1475. data/third_party/closure-library/closure/goog/testing/style/style.js +101 -0
  1476. data/third_party/closure-library/closure/goog/testing/style/style_test.html +162 -0
  1477. data/third_party/closure-library/closure/goog/testing/testcase.js +1233 -0
  1478. data/third_party/closure-library/closure/goog/testing/testqueue.js +66 -0
  1479. data/third_party/closure-library/closure/goog/testing/testrunner.js +399 -0
  1480. data/third_party/closure-library/closure/goog/testing/ui/rendererasserts.js +56 -0
  1481. data/third_party/closure-library/closure/goog/testing/ui/rendererasserts_test.html +52 -0
  1482. data/third_party/closure-library/closure/goog/testing/ui/rendererharness.js +176 -0
  1483. data/third_party/closure-library/closure/goog/testing/ui/style.js +137 -0
  1484. data/third_party/closure-library/closure/goog/testing/ui/style_reference.html +27 -0
  1485. data/third_party/closure-library/closure/goog/testing/ui/style_test.html +130 -0
  1486. data/third_party/closure-library/closure/goog/timer/timer.js +291 -0
  1487. data/third_party/closure-library/closure/goog/timer/timer_test.html +118 -0
  1488. data/third_party/closure-library/closure/goog/tweak/entries.js +997 -0
  1489. data/third_party/closure-library/closure/goog/tweak/entries_test.html +94 -0
  1490. data/third_party/closure-library/closure/goog/tweak/registry.js +310 -0
  1491. data/third_party/closure-library/closure/goog/tweak/registry_test.html +145 -0
  1492. data/third_party/closure-library/closure/goog/tweak/testhelpers.js +119 -0
  1493. data/third_party/closure-library/closure/goog/tweak/tweak.js +301 -0
  1494. data/third_party/closure-library/closure/goog/tweak/tweakui.js +817 -0
  1495. data/third_party/closure-library/closure/goog/tweak/tweakui_test.html +280 -0
  1496. data/third_party/closure-library/closure/goog/ui/abstractspellchecker.js +1138 -0
  1497. data/third_party/closure-library/closure/goog/ui/ac/ac.js +50 -0
  1498. data/third_party/closure-library/closure/goog/ui/ac/ac_test.html +204 -0
  1499. data/third_party/closure-library/closure/goog/ui/ac/arraymatcher.js +162 -0
  1500. data/third_party/closure-library/closure/goog/ui/ac/arraymatcher_test.html +130 -0
  1501. data/third_party/closure-library/closure/goog/ui/ac/autocomplete.js +919 -0
  1502. data/third_party/closure-library/closure/goog/ui/ac/autocomplete_test.html +1613 -0
  1503. data/third_party/closure-library/closure/goog/ui/ac/inputhandler.js +1308 -0
  1504. data/third_party/closure-library/closure/goog/ui/ac/inputhandler_test.html +685 -0
  1505. data/third_party/closure-library/closure/goog/ui/ac/remote.js +114 -0
  1506. data/third_party/closure-library/closure/goog/ui/ac/remotearraymatcher.js +271 -0
  1507. data/third_party/closure-library/closure/goog/ui/ac/remotearraymatcher_test.html +73 -0
  1508. data/third_party/closure-library/closure/goog/ui/ac/renderer.js +1023 -0
  1509. data/third_party/closure-library/closure/goog/ui/ac/renderer_test.html +606 -0
  1510. data/third_party/closure-library/closure/goog/ui/ac/renderoptions.js +80 -0
  1511. data/third_party/closure-library/closure/goog/ui/ac/richinputhandler.js +58 -0
  1512. data/third_party/closure-library/closure/goog/ui/ac/richremote.js +107 -0
  1513. data/third_party/closure-library/closure/goog/ui/ac/richremotearraymatcher.js +125 -0
  1514. data/third_party/closure-library/closure/goog/ui/activitymonitor.js +347 -0
  1515. data/third_party/closure-library/closure/goog/ui/activitymonitor_test.html +150 -0
  1516. data/third_party/closure-library/closure/goog/ui/advancedtooltip.js +366 -0
  1517. data/third_party/closure-library/closure/goog/ui/advancedtooltip_test.html +296 -0
  1518. data/third_party/closure-library/closure/goog/ui/animatedzippy.js +199 -0
  1519. data/third_party/closure-library/closure/goog/ui/animatedzippy_test.html +139 -0
  1520. data/third_party/closure-library/closure/goog/ui/attachablemenu.js +473 -0
  1521. data/third_party/closure-library/closure/goog/ui/bidiinput.js +178 -0
  1522. data/third_party/closure-library/closure/goog/ui/bidiinput_test.html +131 -0
  1523. data/third_party/closure-library/closure/goog/ui/bubble.js +472 -0
  1524. data/third_party/closure-library/closure/goog/ui/button.js +213 -0
  1525. data/third_party/closure-library/closure/goog/ui/button_perf.html +176 -0
  1526. data/third_party/closure-library/closure/goog/ui/button_test.html +257 -0
  1527. data/third_party/closure-library/closure/goog/ui/buttonrenderer.js +214 -0
  1528. data/third_party/closure-library/closure/goog/ui/buttonrenderer_test.html +223 -0
  1529. data/third_party/closure-library/closure/goog/ui/buttonside.js +41 -0
  1530. data/third_party/closure-library/closure/goog/ui/charcounter.js +199 -0
  1531. data/third_party/closure-library/closure/goog/ui/charpicker.js +880 -0
  1532. data/third_party/closure-library/closure/goog/ui/charpicker_test.html +88 -0
  1533. data/third_party/closure-library/closure/goog/ui/checkbox.js +269 -0
  1534. data/third_party/closure-library/closure/goog/ui/checkbox_test.html +370 -0
  1535. data/third_party/closure-library/closure/goog/ui/checkboxmenuitem.js +53 -0
  1536. data/third_party/closure-library/closure/goog/ui/checkboxrenderer.js +171 -0
  1537. data/third_party/closure-library/closure/goog/ui/colorbutton.js +58 -0
  1538. data/third_party/closure-library/closure/goog/ui/colorbutton_test.html +70 -0
  1539. data/third_party/closure-library/closure/goog/ui/colorbuttonrenderer.js +72 -0
  1540. data/third_party/closure-library/closure/goog/ui/colormenubutton.js +215 -0
  1541. data/third_party/closure-library/closure/goog/ui/colormenubuttonrenderer.js +144 -0
  1542. data/third_party/closure-library/closure/goog/ui/colormenubuttonrenderer_test.html +88 -0
  1543. data/third_party/closure-library/closure/goog/ui/colorpalette.js +177 -0
  1544. data/third_party/closure-library/closure/goog/ui/colorpalette_test.html +174 -0
  1545. data/third_party/closure-library/closure/goog/ui/colorpicker.js +344 -0
  1546. data/third_party/closure-library/closure/goog/ui/colorsplitbehavior.js +60 -0
  1547. data/third_party/closure-library/closure/goog/ui/combobox.js +961 -0
  1548. data/third_party/closure-library/closure/goog/ui/combobox_test.html +292 -0
  1549. data/third_party/closure-library/closure/goog/ui/component.js +1300 -0
  1550. data/third_party/closure-library/closure/goog/ui/component_test.html +889 -0
  1551. data/third_party/closure-library/closure/goog/ui/container.js +1322 -0
  1552. data/third_party/closure-library/closure/goog/ui/container_perf.html +55 -0
  1553. data/third_party/closure-library/closure/goog/ui/container_test.html +458 -0
  1554. data/third_party/closure-library/closure/goog/ui/containerrenderer.js +371 -0
  1555. data/third_party/closure-library/closure/goog/ui/containerrenderer_test.html +228 -0
  1556. data/third_party/closure-library/closure/goog/ui/containerscroller.js +222 -0
  1557. data/third_party/closure-library/closure/goog/ui/containerscroller_test.html +214 -0
  1558. data/third_party/closure-library/closure/goog/ui/control.js +1387 -0
  1559. data/third_party/closure-library/closure/goog/ui/control_perf.html +166 -0
  1560. data/third_party/closure-library/closure/goog/ui/control_test.html +2142 -0
  1561. data/third_party/closure-library/closure/goog/ui/controlcontent.js +28 -0
  1562. data/third_party/closure-library/closure/goog/ui/controlrenderer.js +855 -0
  1563. data/third_party/closure-library/closure/goog/ui/controlrenderer_test.html +1100 -0
  1564. data/third_party/closure-library/closure/goog/ui/cookieeditor.js +183 -0
  1565. data/third_party/closure-library/closure/goog/ui/cookieeditor_test.html +107 -0
  1566. data/third_party/closure-library/closure/goog/ui/css3buttonrenderer.js +152 -0
  1567. data/third_party/closure-library/closure/goog/ui/css3menubuttonrenderer.js +147 -0
  1568. data/third_party/closure-library/closure/goog/ui/cssnames.js +29 -0
  1569. data/third_party/closure-library/closure/goog/ui/custombutton.js +58 -0
  1570. data/third_party/closure-library/closure/goog/ui/custombuttonrenderer.js +267 -0
  1571. data/third_party/closure-library/closure/goog/ui/customcolorpalette.js +139 -0
  1572. data/third_party/closure-library/closure/goog/ui/customcolorpalette_test.html +60 -0
  1573. data/third_party/closure-library/closure/goog/ui/datepicker.js +1369 -0
  1574. data/third_party/closure-library/closure/goog/ui/datepicker_test.html +252 -0
  1575. data/third_party/closure-library/closure/goog/ui/datepickerrenderer.js +55 -0
  1576. data/third_party/closure-library/closure/goog/ui/decorate.js +38 -0
  1577. data/third_party/closure-library/closure/goog/ui/decorate_test.html +114 -0
  1578. data/third_party/closure-library/closure/goog/ui/defaultdatepickerrenderer.js +202 -0
  1579. data/third_party/closure-library/closure/goog/ui/dialog.js +1556 -0
  1580. data/third_party/closure-library/closure/goog/ui/dialog_test.html +776 -0
  1581. data/third_party/closure-library/closure/goog/ui/dimensionpicker.js +305 -0
  1582. data/third_party/closure-library/closure/goog/ui/dimensionpicker_test.html +171 -0
  1583. data/third_party/closure-library/closure/goog/ui/dimensionpickerrenderer.js +416 -0
  1584. data/third_party/closure-library/closure/goog/ui/dimensionpickerrenderer_test.html +49 -0
  1585. data/third_party/closure-library/closure/goog/ui/dragdropdetector.js +642 -0
  1586. data/third_party/closure-library/closure/goog/ui/drilldownrow.js +486 -0
  1587. data/third_party/closure-library/closure/goog/ui/drilldownrow_test.html +92 -0
  1588. data/third_party/closure-library/closure/goog/ui/editor/abstractdialog.js +440 -0
  1589. data/third_party/closure-library/closure/goog/ui/editor/abstractdialog_test.html +473 -0
  1590. data/third_party/closure-library/closure/goog/ui/editor/bubble.js +525 -0
  1591. data/third_party/closure-library/closure/goog/ui/editor/bubble_test.html +264 -0
  1592. data/third_party/closure-library/closure/goog/ui/editor/defaulttoolbar.js +1065 -0
  1593. data/third_party/closure-library/closure/goog/ui/editor/equationeditordialog.js +123 -0
  1594. data/third_party/closure-library/closure/goog/ui/editor/equationeditorokevent.js +49 -0
  1595. data/third_party/closure-library/closure/goog/ui/editor/linkdialog.js +1064 -0
  1596. data/third_party/closure-library/closure/goog/ui/editor/linkdialog_test.html +653 -0
  1597. data/third_party/closure-library/closure/goog/ui/editor/messages.js +123 -0
  1598. data/third_party/closure-library/closure/goog/ui/editor/tabpane.js +198 -0
  1599. data/third_party/closure-library/closure/goog/ui/editor/toolbarcontroller.js +295 -0
  1600. data/third_party/closure-library/closure/goog/ui/editor/toolbarfactory.js +440 -0
  1601. data/third_party/closure-library/closure/goog/ui/editor/toolbarfactory_test.html +73 -0
  1602. data/third_party/closure-library/closure/goog/ui/emoji/emoji.js +72 -0
  1603. data/third_party/closure-library/closure/goog/ui/emoji/emojipalette.js +288 -0
  1604. data/third_party/closure-library/closure/goog/ui/emoji/emojipaletterenderer.js +208 -0
  1605. data/third_party/closure-library/closure/goog/ui/emoji/emojipicker.js +804 -0
  1606. data/third_party/closure-library/closure/goog/ui/emoji/emojipicker_test.html +913 -0
  1607. data/third_party/closure-library/closure/goog/ui/emoji/fast_nonprogressive_emojipicker_test.html +256 -0
  1608. data/third_party/closure-library/closure/goog/ui/emoji/fast_progressive_emojipicker_test.html +256 -0
  1609. data/third_party/closure-library/closure/goog/ui/emoji/popupemojipicker.js +410 -0
  1610. data/third_party/closure-library/closure/goog/ui/emoji/popupemojipicker_test.html +80 -0
  1611. data/third_party/closure-library/closure/goog/ui/emoji/progressiveemojipaletterenderer.js +98 -0
  1612. data/third_party/closure-library/closure/goog/ui/emoji/spriteinfo.js +212 -0
  1613. data/third_party/closure-library/closure/goog/ui/emoji/spriteinfo_test.html +51 -0
  1614. data/third_party/closure-library/closure/goog/ui/equation/arrowpalette.js +47 -0
  1615. data/third_party/closure-library/closure/goog/ui/equation/changeevent.js +37 -0
  1616. data/third_party/closure-library/closure/goog/ui/equation/comparisonpalette.js +56 -0
  1617. data/third_party/closure-library/closure/goog/ui/equation/editorpane.js +93 -0
  1618. data/third_party/closure-library/closure/goog/ui/equation/equationeditor.js +220 -0
  1619. data/third_party/closure-library/closure/goog/ui/equation/equationeditordialog.js +137 -0
  1620. data/third_party/closure-library/closure/goog/ui/equation/greekpalette.js +75 -0
  1621. data/third_party/closure-library/closure/goog/ui/equation/imagerenderer.js +190 -0
  1622. data/third_party/closure-library/closure/goog/ui/equation/mathpalette.js +55 -0
  1623. data/third_party/closure-library/closure/goog/ui/equation/menupalette.js +86 -0
  1624. data/third_party/closure-library/closure/goog/ui/equation/palette.js +288 -0
  1625. data/third_party/closure-library/closure/goog/ui/equation/palettemanager.js +203 -0
  1626. data/third_party/closure-library/closure/goog/ui/equation/symbolpalette.js +74 -0
  1627. data/third_party/closure-library/closure/goog/ui/equation/texeditor.js +141 -0
  1628. data/third_party/closure-library/closure/goog/ui/equation/texpane.js +444 -0
  1629. data/third_party/closure-library/closure/goog/ui/filteredmenu.js +575 -0
  1630. data/third_party/closure-library/closure/goog/ui/filteredmenu_test.html +321 -0
  1631. data/third_party/closure-library/closure/goog/ui/filterobservingmenuitem.js +97 -0
  1632. data/third_party/closure-library/closure/goog/ui/filterobservingmenuitemrenderer.js +62 -0
  1633. data/third_party/closure-library/closure/goog/ui/flatbuttonrenderer.js +146 -0
  1634. data/third_party/closure-library/closure/goog/ui/flatmenubuttonrenderer.js +238 -0
  1635. data/third_party/closure-library/closure/goog/ui/formpost.js +109 -0
  1636. data/third_party/closure-library/closure/goog/ui/formpost_test.html +105 -0
  1637. data/third_party/closure-library/closure/goog/ui/gauge.js +1011 -0
  1638. data/third_party/closure-library/closure/goog/ui/gaugetheme.js +169 -0
  1639. data/third_party/closure-library/closure/goog/ui/hovercard.js +456 -0
  1640. data/third_party/closure-library/closure/goog/ui/hovercard_test.html +360 -0
  1641. data/third_party/closure-library/closure/goog/ui/hsvapalette.js +298 -0
  1642. data/third_party/closure-library/closure/goog/ui/hsvapalette_test.html +152 -0
  1643. data/third_party/closure-library/closure/goog/ui/hsvpalette.js +505 -0
  1644. data/third_party/closure-library/closure/goog/ui/hsvpalette_test.html +219 -0
  1645. data/third_party/closure-library/closure/goog/ui/idgenerator.js +57 -0
  1646. data/third_party/closure-library/closure/goog/ui/idletimer.js +299 -0
  1647. data/third_party/closure-library/closure/goog/ui/idletimer_test.html +100 -0
  1648. data/third_party/closure-library/closure/goog/ui/iframemask.js +257 -0
  1649. data/third_party/closure-library/closure/goog/ui/iframemask_test.html +230 -0
  1650. data/third_party/closure-library/closure/goog/ui/imagelessbuttonrenderer.js +204 -0
  1651. data/third_party/closure-library/closure/goog/ui/imagelessmenubuttonrenderer.js +207 -0
  1652. data/third_party/closure-library/closure/goog/ui/inputdatepicker.js +305 -0
  1653. data/third_party/closure-library/closure/goog/ui/inputdatepicker_test.html +111 -0
  1654. data/third_party/closure-library/closure/goog/ui/itemevent.js +50 -0
  1655. data/third_party/closure-library/closure/goog/ui/keyboardshortcuthandler.js +1017 -0
  1656. data/third_party/closure-library/closure/goog/ui/keyboardshortcuthandler_test.html +702 -0
  1657. data/third_party/closure-library/closure/goog/ui/labelinput.js +592 -0
  1658. data/third_party/closure-library/closure/goog/ui/labelinput_test.html +252 -0
  1659. data/third_party/closure-library/closure/goog/ui/linkbuttonrenderer.js +67 -0
  1660. data/third_party/closure-library/closure/goog/ui/media/flashobject.js +631 -0
  1661. data/third_party/closure-library/closure/goog/ui/media/flashobject_test.html +236 -0
  1662. data/third_party/closure-library/closure/goog/ui/media/flickr.js +308 -0
  1663. data/third_party/closure-library/closure/goog/ui/media/flickr_test.html +114 -0
  1664. data/third_party/closure-library/closure/goog/ui/media/googlevideo.js +281 -0
  1665. data/third_party/closure-library/closure/goog/ui/media/googlevideo_test.html +105 -0
  1666. data/third_party/closure-library/closure/goog/ui/media/media.js +285 -0
  1667. data/third_party/closure-library/closure/goog/ui/media/media_test.html +118 -0
  1668. data/third_party/closure-library/closure/goog/ui/media/mediamodel.js +960 -0
  1669. data/third_party/closure-library/closure/goog/ui/media/mediamodel_test.html +108 -0
  1670. data/third_party/closure-library/closure/goog/ui/media/mp3.js +228 -0
  1671. data/third_party/closure-library/closure/goog/ui/media/mp3_test.html +78 -0
  1672. data/third_party/closure-library/closure/goog/ui/media/photo.js +142 -0
  1673. data/third_party/closure-library/closure/goog/ui/media/photo_test.html +62 -0
  1674. data/third_party/closure-library/closure/goog/ui/media/picasa.js +321 -0
  1675. data/third_party/closure-library/closure/goog/ui/media/picasa_test.html +121 -0
  1676. data/third_party/closure-library/closure/goog/ui/media/vimeo.js +276 -0
  1677. data/third_party/closure-library/closure/goog/ui/media/vimeo_test.html +102 -0
  1678. data/third_party/closure-library/closure/goog/ui/media/youtube.js +357 -0
  1679. data/third_party/closure-library/closure/goog/ui/media/youtube_test.html +243 -0
  1680. data/third_party/closure-library/closure/goog/ui/menu.js +476 -0
  1681. data/third_party/closure-library/closure/goog/ui/menu_test.html +167 -0
  1682. data/third_party/closure-library/closure/goog/ui/menubar.js +44 -0
  1683. data/third_party/closure-library/closure/goog/ui/menubardecorator.js +35 -0
  1684. data/third_party/closure-library/closure/goog/ui/menubarrenderer.js +74 -0
  1685. data/third_party/closure-library/closure/goog/ui/menubase.js +190 -0
  1686. data/third_party/closure-library/closure/goog/ui/menubutton.js +903 -0
  1687. data/third_party/closure-library/closure/goog/ui/menubutton_test.html +637 -0
  1688. data/third_party/closure-library/closure/goog/ui/menubutton_test_frame.html +41 -0
  1689. data/third_party/closure-library/closure/goog/ui/menubuttonrenderer.js +266 -0
  1690. data/third_party/closure-library/closure/goog/ui/menubuttonrenderer_test.html +179 -0
  1691. data/third_party/closure-library/closure/goog/ui/menuheader.js +62 -0
  1692. data/third_party/closure-library/closure/goog/ui/menuheaderrenderer.js +54 -0
  1693. data/third_party/closure-library/closure/goog/ui/menuitem.js +233 -0
  1694. data/third_party/closure-library/closure/goog/ui/menuitem_test.html +559 -0
  1695. data/third_party/closure-library/closure/goog/ui/menuitemrenderer.js +358 -0
  1696. data/third_party/closure-library/closure/goog/ui/menuitemrenderer_test.html +201 -0
  1697. data/third_party/closure-library/closure/goog/ui/menurenderer.js +123 -0
  1698. data/third_party/closure-library/closure/goog/ui/menuseparator.js +51 -0
  1699. data/third_party/closure-library/closure/goog/ui/menuseparatorrenderer.js +113 -0
  1700. data/third_party/closure-library/closure/goog/ui/menuseparatorrenderer_test.html +61 -0
  1701. data/third_party/closure-library/closure/goog/ui/mockactivitymonitor.js +71 -0
  1702. data/third_party/closure-library/closure/goog/ui/mockactivitymonitor_test.html +19 -0
  1703. data/third_party/closure-library/closure/goog/ui/mockactivitymonitor_test.js +94 -0
  1704. data/third_party/closure-library/closure/goog/ui/modalpopup.js +698 -0
  1705. data/third_party/closure-library/closure/goog/ui/modalpopup_test.html +419 -0
  1706. data/third_party/closure-library/closure/goog/ui/nativebuttonrenderer.js +207 -0
  1707. data/third_party/closure-library/closure/goog/ui/nativebuttonrenderer_test.html +214 -0
  1708. data/third_party/closure-library/closure/goog/ui/offlineinstalldialog.js +1089 -0
  1709. data/third_party/closure-library/closure/goog/ui/offlinestatuscard.js +580 -0
  1710. data/third_party/closure-library/closure/goog/ui/offlinestatuscomponent.js +540 -0
  1711. data/third_party/closure-library/closure/goog/ui/option.js +68 -0
  1712. data/third_party/closure-library/closure/goog/ui/palette.js +598 -0
  1713. data/third_party/closure-library/closure/goog/ui/palette_test.html +135 -0
  1714. data/third_party/closure-library/closure/goog/ui/paletterenderer.js +372 -0
  1715. data/third_party/closure-library/closure/goog/ui/paletterenderer_test.html +83 -0
  1716. data/third_party/closure-library/closure/goog/ui/plaintextspellchecker.js +672 -0
  1717. data/third_party/closure-library/closure/goog/ui/plaintextspellchecker_test.html +239 -0
  1718. data/third_party/closure-library/closure/goog/ui/popup.js +344 -0
  1719. data/third_party/closure-library/closure/goog/ui/popup_test.html +137 -0
  1720. data/third_party/closure-library/closure/goog/ui/popupbase.js +822 -0
  1721. data/third_party/closure-library/closure/goog/ui/popupbase_test.html +484 -0
  1722. data/third_party/closure-library/closure/goog/ui/popupcolorpicker.js +441 -0
  1723. data/third_party/closure-library/closure/goog/ui/popupcolorpicker_test.html +71 -0
  1724. data/third_party/closure-library/closure/goog/ui/popupdatepicker.js +273 -0
  1725. data/third_party/closure-library/closure/goog/ui/popupmenu.js +557 -0
  1726. data/third_party/closure-library/closure/goog/ui/popupmenu_test.html +308 -0
  1727. data/third_party/closure-library/closure/goog/ui/progressbar.js +401 -0
  1728. data/third_party/closure-library/closure/goog/ui/prompt.js +405 -0
  1729. data/third_party/closure-library/closure/goog/ui/prompt_test.html +144 -0
  1730. data/third_party/closure-library/closure/goog/ui/rangemodel.js +302 -0
  1731. data/third_party/closure-library/closure/goog/ui/rangemodel_test.html +270 -0
  1732. data/third_party/closure-library/closure/goog/ui/ratings.js +451 -0
  1733. data/third_party/closure-library/closure/goog/ui/registry.js +167 -0
  1734. data/third_party/closure-library/closure/goog/ui/registry_test.html +237 -0
  1735. data/third_party/closure-library/closure/goog/ui/richtextspellchecker.js +626 -0
  1736. data/third_party/closure-library/closure/goog/ui/richtextspellchecker_test.html +247 -0
  1737. data/third_party/closure-library/closure/goog/ui/roundedpanel.js +625 -0
  1738. data/third_party/closure-library/closure/goog/ui/roundedpanel_test.html +57 -0
  1739. data/third_party/closure-library/closure/goog/ui/roundedtabrenderer.js +197 -0
  1740. data/third_party/closure-library/closure/goog/ui/scrollfloater.js +585 -0
  1741. data/third_party/closure-library/closure/goog/ui/scrollfloater_test.html +144 -0
  1742. data/third_party/closure-library/closure/goog/ui/select.js +434 -0
  1743. data/third_party/closure-library/closure/goog/ui/select_test.html +235 -0
  1744. data/third_party/closure-library/closure/goog/ui/selectionmenubutton.js +299 -0
  1745. data/third_party/closure-library/closure/goog/ui/selectionmenubutton_test.html +237 -0
  1746. data/third_party/closure-library/closure/goog/ui/selectionmodel.js +300 -0
  1747. data/third_party/closure-library/closure/goog/ui/selectionmodel_test.html +225 -0
  1748. data/third_party/closure-library/closure/goog/ui/separator.js +80 -0
  1749. data/third_party/closure-library/closure/goog/ui/serverchart.js +1837 -0
  1750. data/third_party/closure-library/closure/goog/ui/serverchart_test.html +638 -0
  1751. data/third_party/closure-library/closure/goog/ui/slider.js +126 -0
  1752. data/third_party/closure-library/closure/goog/ui/sliderbase.js +1592 -0
  1753. data/third_party/closure-library/closure/goog/ui/sliderbase_test.html +897 -0
  1754. data/third_party/closure-library/closure/goog/ui/splitbehavior.js +340 -0
  1755. data/third_party/closure-library/closure/goog/ui/splitbehavior_test.html +161 -0
  1756. data/third_party/closure-library/closure/goog/ui/splitpane.js +898 -0
  1757. data/third_party/closure-library/closure/goog/ui/splitpane_test.html +229 -0
  1758. data/third_party/closure-library/closure/goog/ui/style/app/buttonrenderer.js +201 -0
  1759. data/third_party/closure-library/closure/goog/ui/style/app/buttonrenderer_test.html +155 -0
  1760. data/third_party/closure-library/closure/goog/ui/style/app/menubuttonrenderer.js +233 -0
  1761. data/third_party/closure-library/closure/goog/ui/style/app/menubuttonrenderer_test.html +167 -0
  1762. data/third_party/closure-library/closure/goog/ui/style/app/primaryactionbuttonrenderer.js +88 -0
  1763. data/third_party/closure-library/closure/goog/ui/style/app/primaryactionbuttonrenderer_test.html +76 -0
  1764. data/third_party/closure-library/closure/goog/ui/submenu.js +667 -0
  1765. data/third_party/closure-library/closure/goog/ui/submenu_test.html +563 -0
  1766. data/third_party/closure-library/closure/goog/ui/submenurenderer.js +233 -0
  1767. data/third_party/closure-library/closure/goog/ui/tab.js +102 -0
  1768. data/third_party/closure-library/closure/goog/ui/tab_test.html +62 -0
  1769. data/third_party/closure-library/closure/goog/ui/tabbar.js +394 -0
  1770. data/third_party/closure-library/closure/goog/ui/tabbar_test.html +612 -0
  1771. data/third_party/closure-library/closure/goog/ui/tabbarrenderer.js +175 -0
  1772. data/third_party/closure-library/closure/goog/ui/tabbarrenderer_test.html +138 -0
  1773. data/third_party/closure-library/closure/goog/ui/tablesorter.js +325 -0
  1774. data/third_party/closure-library/closure/goog/ui/tablesorter_test.html +197 -0
  1775. data/third_party/closure-library/closure/goog/ui/tabpane.js +675 -0
  1776. data/third_party/closure-library/closure/goog/ui/tabpane_test.html +107 -0
  1777. data/third_party/closure-library/closure/goog/ui/tabrenderer.js +153 -0
  1778. data/third_party/closure-library/closure/goog/ui/tabrenderer_test.html +135 -0
  1779. data/third_party/closure-library/closure/goog/ui/textarea.js +577 -0
  1780. data/third_party/closure-library/closure/goog/ui/textarea_test.html +314 -0
  1781. data/third_party/closure-library/closure/goog/ui/textarearenderer.js +169 -0
  1782. data/third_party/closure-library/closure/goog/ui/togglebutton.js +58 -0
  1783. data/third_party/closure-library/closure/goog/ui/toolbar.js +46 -0
  1784. data/third_party/closure-library/closure/goog/ui/toolbarbutton.js +55 -0
  1785. data/third_party/closure-library/closure/goog/ui/toolbarbuttonrenderer.js +57 -0
  1786. data/third_party/closure-library/closure/goog/ui/toolbarcolormenubutton.js +58 -0
  1787. data/third_party/closure-library/closure/goog/ui/toolbarcolormenubuttonrenderer.js +98 -0
  1788. data/third_party/closure-library/closure/goog/ui/toolbarcolormenubuttonrenderer_test.html +66 -0
  1789. data/third_party/closure-library/closure/goog/ui/toolbarmenubutton.js +57 -0
  1790. data/third_party/closure-library/closure/goog/ui/toolbarmenubuttonrenderer.js +57 -0
  1791. data/third_party/closure-library/closure/goog/ui/toolbarrenderer.js +99 -0
  1792. data/third_party/closure-library/closure/goog/ui/toolbarselect.js +56 -0
  1793. data/third_party/closure-library/closure/goog/ui/toolbarseparator.js +53 -0
  1794. data/third_party/closure-library/closure/goog/ui/toolbarseparatorrenderer.js +91 -0
  1795. data/third_party/closure-library/closure/goog/ui/toolbartogglebutton.js +54 -0
  1796. data/third_party/closure-library/closure/goog/ui/tooltip.js +999 -0
  1797. data/third_party/closure-library/closure/goog/ui/tooltip_test.html +380 -0
  1798. data/third_party/closure-library/closure/goog/ui/tree/basenode.js +1458 -0
  1799. data/third_party/closure-library/closure/goog/ui/tree/basenode_test.html +232 -0
  1800. data/third_party/closure-library/closure/goog/ui/tree/treecontrol.js +663 -0
  1801. data/third_party/closure-library/closure/goog/ui/tree/treecontrol_test.html +113 -0
  1802. data/third_party/closure-library/closure/goog/ui/tree/treenode.js +107 -0
  1803. data/third_party/closure-library/closure/goog/ui/tree/typeahead.js +332 -0
  1804. data/third_party/closure-library/closure/goog/ui/tree/typeahead_test.html +133 -0
  1805. data/third_party/closure-library/closure/goog/ui/tristatemenuitem.js +184 -0
  1806. data/third_party/closure-library/closure/goog/ui/tristatemenuitemrenderer.js +84 -0
  1807. data/third_party/closure-library/closure/goog/ui/twothumbslider.js +157 -0
  1808. data/third_party/closure-library/closure/goog/ui/twothumbslider_test.html +39 -0
  1809. data/third_party/closure-library/closure/goog/ui/zippy.js +445 -0
  1810. data/third_party/closure-library/closure/goog/ui/zippy_test.html +315 -0
  1811. data/third_party/closure-library/closure/goog/uri/uri.js +1502 -0
  1812. data/third_party/closure-library/closure/goog/uri/uri_test.html +21 -0
  1813. data/third_party/closure-library/closure/goog/uri/uri_test.js +1048 -0
  1814. data/third_party/closure-library/closure/goog/uri/utils.js +1053 -0
  1815. data/third_party/closure-library/closure/goog/uri/utils_test.html +562 -0
  1816. data/third_party/closure-library/closure/goog/useragent/adobereader.js +90 -0
  1817. data/third_party/closure-library/closure/goog/useragent/adobereader_test.html +34 -0
  1818. data/third_party/closure-library/closure/goog/useragent/flash.js +153 -0
  1819. data/third_party/closure-library/closure/goog/useragent/flash_test.html +34 -0
  1820. data/third_party/closure-library/closure/goog/useragent/iphoto.js +87 -0
  1821. data/third_party/closure-library/closure/goog/useragent/jscript.js +95 -0
  1822. data/third_party/closure-library/closure/goog/useragent/jscript_test.html +65 -0
  1823. data/third_party/closure-library/closure/goog/useragent/picasa.js +112 -0
  1824. data/third_party/closure-library/closure/goog/useragent/platform.js +82 -0
  1825. data/third_party/closure-library/closure/goog/useragent/platform_test.html +182 -0
  1826. data/third_party/closure-library/closure/goog/useragent/product.js +253 -0
  1827. data/third_party/closure-library/closure/goog/useragent/product_isversion.js +140 -0
  1828. data/third_party/closure-library/closure/goog/useragent/product_test.html +380 -0
  1829. data/third_party/closure-library/closure/goog/useragent/useragent.js +599 -0
  1830. data/third_party/closure-library/closure/goog/useragent/useragent_quirks_test.html +27 -0
  1831. data/third_party/closure-library/closure/goog/useragent/useragent_test.html +300 -0
  1832. data/third_party/closure-library/closure/goog/vec/float32array.js +110 -0
  1833. data/third_party/closure-library/closure/goog/vec/float32array_test.html +69 -0
  1834. data/third_party/closure-library/closure/goog/vec/float64array.js +117 -0
  1835. data/third_party/closure-library/closure/goog/vec/float64array_test.html +69 -0
  1836. data/third_party/closure-library/closure/goog/vec/mat3.js +1211 -0
  1837. data/third_party/closure-library/closure/goog/vec/mat3_test.html +465 -0
  1838. data/third_party/closure-library/closure/goog/vec/mat3d.js +1039 -0
  1839. data/third_party/closure-library/closure/goog/vec/mat3d_test.html +432 -0
  1840. data/third_party/closure-library/closure/goog/vec/mat3f.js +1039 -0
  1841. data/third_party/closure-library/closure/goog/vec/mat3f_test.html +432 -0
  1842. data/third_party/closure-library/closure/goog/vec/mat4.js +1822 -0
  1843. data/third_party/closure-library/closure/goog/vec/mat4_test.html +781 -0
  1844. data/third_party/closure-library/closure/goog/vec/mat4d.js +1769 -0
  1845. data/third_party/closure-library/closure/goog/vec/mat4d_test.html +738 -0
  1846. data/third_party/closure-library/closure/goog/vec/mat4f.js +1769 -0
  1847. data/third_party/closure-library/closure/goog/vec/mat4f_test.html +738 -0
  1848. data/third_party/closure-library/closure/goog/vec/matrix3.js +720 -0
  1849. data/third_party/closure-library/closure/goog/vec/matrix3_test.html +301 -0
  1850. data/third_party/closure-library/closure/goog/vec/matrix4.js +1405 -0
  1851. data/third_party/closure-library/closure/goog/vec/matrix4_test.html +626 -0
  1852. data/third_party/closure-library/closure/goog/vec/quaternion.js +458 -0
  1853. data/third_party/closure-library/closure/goog/vec/quaternion_test.html +195 -0
  1854. data/third_party/closure-library/closure/goog/vec/ray.js +94 -0
  1855. data/third_party/closure-library/closure/goog/vec/ray_test.html +66 -0
  1856. data/third_party/closure-library/closure/goog/vec/vec.js +73 -0
  1857. data/third_party/closure-library/closure/goog/vec/vec2.js +376 -0
  1858. data/third_party/closure-library/closure/goog/vec/vec2_test.html +216 -0
  1859. data/third_party/closure-library/closure/goog/vec/vec2d.js +325 -0
  1860. data/third_party/closure-library/closure/goog/vec/vec2d_test.html +208 -0
  1861. data/third_party/closure-library/closure/goog/vec/vec2f.js +325 -0
  1862. data/third_party/closure-library/closure/goog/vec/vec2f_test.html +208 -0
  1863. data/third_party/closure-library/closure/goog/vec/vec3.js +474 -0
  1864. data/third_party/closure-library/closure/goog/vec/vec3_test.html +258 -0
  1865. data/third_party/closure-library/closure/goog/vec/vec3d.js +358 -0
  1866. data/third_party/closure-library/closure/goog/vec/vec3d_test.html +232 -0
  1867. data/third_party/closure-library/closure/goog/vec/vec3f.js +358 -0
  1868. data/third_party/closure-library/closure/goog/vec/vec3f_test.html +232 -0
  1869. data/third_party/closure-library/closure/goog/vec/vec4.js +406 -0
  1870. data/third_party/closure-library/closure/goog/vec/vec4_test.html +192 -0
  1871. data/third_party/closure-library/closure/goog/vec/vec4d.js +293 -0
  1872. data/third_party/closure-library/closure/goog/vec/vec4d_test.html +168 -0
  1873. data/third_party/closure-library/closure/goog/vec/vec4f.js +293 -0
  1874. data/third_party/closure-library/closure/goog/vec/vec4f_test.html +168 -0
  1875. data/third_party/closure-library/closure/goog/vec/vec_array_perf.html +443 -0
  1876. data/third_party/closure-library/closure/goog/vec/vec_perf.html +101 -0
  1877. data/third_party/closure-library/closure/goog/webgl/webgl.js +2194 -0
  1878. data/third_party/closure-library/closure/goog/window/window.js +225 -0
  1879. data/third_party/closure-library/closure/goog/window/window_test.html +239 -0
  1880. data/third_party/closure-library/closure/known_issues/testdata/closure_library_warnings.txt +47 -0
  1881. data/third_party/closure-library/third_party/closure/goog/base.js +2 -0
  1882. data/third_party/closure-library/third_party/closure/goog/caja/string/html/htmlparser.js +611 -0
  1883. data/third_party/closure-library/third_party/closure/goog/caja/string/html/htmlsanitizer.js +605 -0
  1884. data/third_party/closure-library/third_party/closure/goog/deps.js +20 -0
  1885. data/third_party/closure-library/third_party/closure/goog/dojo/dom/query.js +1543 -0
  1886. data/third_party/closure-library/third_party/closure/goog/dojo/dom/query_compiled_test.html +65 -0
  1887. data/third_party/closure-library/third_party/closure/goog/dojo/dom/query_test.html +64 -0
  1888. data/third_party/closure-library/third_party/closure/goog/dojo/dom/query_test.js +158 -0
  1889. data/third_party/closure-library/third_party/closure/goog/jpeg_encoder/jpeg_encoder_basic.js +751 -0
  1890. data/third_party/closure-library/third_party/closure/goog/loremipsum/text/loremipsum.js +712 -0
  1891. data/third_party/closure-library/third_party/closure/goog/loremipsum/text/loremipsum_test.html +60 -0
  1892. data/third_party/closure-library/third_party/closure/goog/mochikit/async/deferred.js +764 -0
  1893. data/third_party/closure-library/third_party/closure/goog/mochikit/async/deferred_async_test.html +144 -0
  1894. data/third_party/closure-library/third_party/closure/goog/mochikit/async/deferred_test.html +877 -0
  1895. data/third_party/closure-library/third_party/closure/goog/mochikit/async/deferredlist.js +205 -0
  1896. data/third_party/closure-library/third_party/closure/goog/mochikit/async/deferredlist_test.html +504 -0
  1897. data/third_party/closure-library/third_party/closure/goog/osapi/osapi.js +95 -0
  1898. metadata +2054 -0
@@ -0,0 +1,1571 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <!--
4
+ Copyright 2009 The Closure Library Authors. All Rights Reserved.
5
+
6
+ Use of this source code is governed by the Apache License, Version 2.0.
7
+ See the COPYING file for details.
8
+ -->
9
+ <head>
10
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
11
+ <title>Closure Unit Tests - goog.math.Long</title>
12
+ <script src="../base.js" type="text/javascript"></script>
13
+ <script type="text/javascript">
14
+ goog.require('goog.math.Long');
15
+ goog.require('goog.testing.jsunit');
16
+ </script>
17
+ </head>
18
+ <body>
19
+ <script type="text/javascript">
20
+ // Interprets the given numbers as the bits of a 32-bit int. In particular,
21
+ // this takes care of the 32-bit being interpretted as the sign.
22
+ function toInt32s(arr) {
23
+ for (var i = 0; i < arr.length; ++i) {
24
+ arr[i] = arr[i] & 0xFFFFFFFF;
25
+ }
26
+ }
27
+
28
+ // Note that these are in numerical order.
29
+ var TEST_BITS = [ 0x80000000, 0x00000000,
30
+ 0xb776d5f5, 0x5634e2db,
31
+ 0xffefffff, 0xffffffff,
32
+ 0xfff00000, 0x00000000,
33
+ 0xfffeffff, 0xffffffff,
34
+ 0xffff0000, 0x00000000,
35
+ 0xfffffffe, 0xffffffff,
36
+ 0xffffffff, 0x00000000,
37
+ 0xffffffff, 0xfeffffff,
38
+ 0xffffffff, 0xff000000,
39
+ 0xffffffff, 0xfffeffff,
40
+ 0xffffffff, 0xffff0000,
41
+ 0xffffffff, 0xffff7fff,
42
+ 0xffffffff, 0xffff8000,
43
+ 0xffffffff, 0xfffffffe,
44
+ 0xffffffff, 0xffffffff,
45
+ 0x00000000, 0x00000000,
46
+ 0x00000000, 0x00000001,
47
+ 0x00000000, 0x00000002,
48
+ 0x00000000, 0x00007fff,
49
+ 0x00000000, 0x00008000,
50
+ 0x00000000, 0x0000ffff,
51
+ 0x00000000, 0x00010000,
52
+ 0x00000000, 0x00ffffff,
53
+ 0x00000000, 0x01000000,
54
+ 0x00000000, 0x5634e2db,
55
+ 0x00000000, 0xb776d5f5,
56
+ 0x00000000, 0xffffffff,
57
+ 0x00000001, 0x00000000,
58
+ 0x0000ffff, 0xffffffff,
59
+ 0x00010000, 0x00000000,
60
+ 0x000fffff, 0xffffffff,
61
+ 0x00100000, 0x00000000,
62
+ 0x5634e2db, 0xb776d5f5,
63
+ 0x7fffffff, 0xffffffff ];
64
+ toInt32s(TEST_BITS);
65
+
66
+ var TEST_ADD_BITS = [
67
+ 0x3776d5f5, 0x5634e2db, 0x7fefffff, 0xffffffff, 0xb766d5f5, 0x5634e2da,
68
+ 0x7ff00000, 0x00000000, 0xb766d5f5, 0x5634e2db, 0xffdfffff, 0xffffffff,
69
+ 0x7ffeffff, 0xffffffff, 0xb775d5f5, 0x5634e2da, 0xffeeffff, 0xfffffffe,
70
+ 0xffeeffff, 0xffffffff, 0x7fff0000, 0x00000000, 0xb775d5f5, 0x5634e2db,
71
+ 0xffeeffff, 0xffffffff, 0xffef0000, 0x00000000, 0xfffdffff, 0xffffffff,
72
+ 0x7ffffffe, 0xffffffff, 0xb776d5f4, 0x5634e2da, 0xffeffffe, 0xfffffffe,
73
+ 0xffeffffe, 0xffffffff, 0xfffefffe, 0xfffffffe, 0xfffefffe, 0xffffffff,
74
+ 0x7fffffff, 0x00000000, 0xb776d5f4, 0x5634e2db, 0xffeffffe, 0xffffffff,
75
+ 0xffefffff, 0x00000000, 0xfffefffe, 0xffffffff, 0xfffeffff, 0x00000000,
76
+ 0xfffffffd, 0xffffffff, 0x7fffffff, 0xfeffffff, 0xb776d5f5, 0x5534e2da,
77
+ 0xffefffff, 0xfefffffe, 0xffefffff, 0xfeffffff, 0xfffeffff, 0xfefffffe,
78
+ 0xfffeffff, 0xfeffffff, 0xfffffffe, 0xfefffffe, 0xfffffffe, 0xfeffffff,
79
+ 0x7fffffff, 0xff000000, 0xb776d5f5, 0x5534e2db, 0xffefffff, 0xfeffffff,
80
+ 0xffefffff, 0xff000000, 0xfffeffff, 0xfeffffff, 0xfffeffff, 0xff000000,
81
+ 0xfffffffe, 0xfeffffff, 0xfffffffe, 0xff000000, 0xffffffff, 0xfdffffff,
82
+ 0x7fffffff, 0xfffeffff, 0xb776d5f5, 0x5633e2da, 0xffefffff, 0xfffefffe,
83
+ 0xffefffff, 0xfffeffff, 0xfffeffff, 0xfffefffe, 0xfffeffff, 0xfffeffff,
84
+ 0xfffffffe, 0xfffefffe, 0xfffffffe, 0xfffeffff, 0xffffffff, 0xfefefffe,
85
+ 0xffffffff, 0xfefeffff, 0x7fffffff, 0xffff0000, 0xb776d5f5, 0x5633e2db,
86
+ 0xffefffff, 0xfffeffff, 0xffefffff, 0xffff0000, 0xfffeffff, 0xfffeffff,
87
+ 0xfffeffff, 0xffff0000, 0xfffffffe, 0xfffeffff, 0xfffffffe, 0xffff0000,
88
+ 0xffffffff, 0xfefeffff, 0xffffffff, 0xfeff0000, 0xffffffff, 0xfffdffff,
89
+ 0x7fffffff, 0xffff7fff, 0xb776d5f5, 0x563462da, 0xffefffff, 0xffff7ffe,
90
+ 0xffefffff, 0xffff7fff, 0xfffeffff, 0xffff7ffe, 0xfffeffff, 0xffff7fff,
91
+ 0xfffffffe, 0xffff7ffe, 0xfffffffe, 0xffff7fff, 0xffffffff, 0xfeff7ffe,
92
+ 0xffffffff, 0xfeff7fff, 0xffffffff, 0xfffe7ffe, 0xffffffff, 0xfffe7fff,
93
+ 0x7fffffff, 0xffff8000, 0xb776d5f5, 0x563462db, 0xffefffff, 0xffff7fff,
94
+ 0xffefffff, 0xffff8000, 0xfffeffff, 0xffff7fff, 0xfffeffff, 0xffff8000,
95
+ 0xfffffffe, 0xffff7fff, 0xfffffffe, 0xffff8000, 0xffffffff, 0xfeff7fff,
96
+ 0xffffffff, 0xfeff8000, 0xffffffff, 0xfffe7fff, 0xffffffff, 0xfffe8000,
97
+ 0xffffffff, 0xfffeffff, 0x7fffffff, 0xfffffffe, 0xb776d5f5, 0x5634e2d9,
98
+ 0xffefffff, 0xfffffffd, 0xffefffff, 0xfffffffe, 0xfffeffff, 0xfffffffd,
99
+ 0xfffeffff, 0xfffffffe, 0xfffffffe, 0xfffffffd, 0xfffffffe, 0xfffffffe,
100
+ 0xffffffff, 0xfefffffd, 0xffffffff, 0xfefffffe, 0xffffffff, 0xfffefffd,
101
+ 0xffffffff, 0xfffefffe, 0xffffffff, 0xffff7ffd, 0xffffffff, 0xffff7ffe,
102
+ 0x7fffffff, 0xffffffff, 0xb776d5f5, 0x5634e2da, 0xffefffff, 0xfffffffe,
103
+ 0xffefffff, 0xffffffff, 0xfffeffff, 0xfffffffe, 0xfffeffff, 0xffffffff,
104
+ 0xfffffffe, 0xfffffffe, 0xfffffffe, 0xffffffff, 0xffffffff, 0xfefffffe,
105
+ 0xffffffff, 0xfeffffff, 0xffffffff, 0xfffefffe, 0xffffffff, 0xfffeffff,
106
+ 0xffffffff, 0xffff7ffe, 0xffffffff, 0xffff7fff, 0xffffffff, 0xfffffffd,
107
+ 0x80000000, 0x00000000, 0xb776d5f5, 0x5634e2db, 0xffefffff, 0xffffffff,
108
+ 0xfff00000, 0x00000000, 0xfffeffff, 0xffffffff, 0xffff0000, 0x00000000,
109
+ 0xfffffffe, 0xffffffff, 0xffffffff, 0x00000000, 0xffffffff, 0xfeffffff,
110
+ 0xffffffff, 0xff000000, 0xffffffff, 0xfffeffff, 0xffffffff, 0xffff0000,
111
+ 0xffffffff, 0xffff7fff, 0xffffffff, 0xffff8000, 0xffffffff, 0xfffffffe,
112
+ 0xffffffff, 0xffffffff, 0x80000000, 0x00000001, 0xb776d5f5, 0x5634e2dc,
113
+ 0xfff00000, 0x00000000, 0xfff00000, 0x00000001, 0xffff0000, 0x00000000,
114
+ 0xffff0000, 0x00000001, 0xffffffff, 0x00000000, 0xffffffff, 0x00000001,
115
+ 0xffffffff, 0xff000000, 0xffffffff, 0xff000001, 0xffffffff, 0xffff0000,
116
+ 0xffffffff, 0xffff0001, 0xffffffff, 0xffff8000, 0xffffffff, 0xffff8001,
117
+ 0xffffffff, 0xffffffff, 0x00000000, 0x00000000, 0x00000000, 0x00000001,
118
+ 0x80000000, 0x00000002, 0xb776d5f5, 0x5634e2dd, 0xfff00000, 0x00000001,
119
+ 0xfff00000, 0x00000002, 0xffff0000, 0x00000001, 0xffff0000, 0x00000002,
120
+ 0xffffffff, 0x00000001, 0xffffffff, 0x00000002, 0xffffffff, 0xff000001,
121
+ 0xffffffff, 0xff000002, 0xffffffff, 0xffff0001, 0xffffffff, 0xffff0002,
122
+ 0xffffffff, 0xffff8001, 0xffffffff, 0xffff8002, 0x00000000, 0x00000000,
123
+ 0x00000000, 0x00000001, 0x00000000, 0x00000002, 0x00000000, 0x00000003,
124
+ 0x80000000, 0x00007fff, 0xb776d5f5, 0x563562da, 0xfff00000, 0x00007ffe,
125
+ 0xfff00000, 0x00007fff, 0xffff0000, 0x00007ffe, 0xffff0000, 0x00007fff,
126
+ 0xffffffff, 0x00007ffe, 0xffffffff, 0x00007fff, 0xffffffff, 0xff007ffe,
127
+ 0xffffffff, 0xff007fff, 0xffffffff, 0xffff7ffe, 0xffffffff, 0xffff7fff,
128
+ 0xffffffff, 0xfffffffe, 0xffffffff, 0xffffffff, 0x00000000, 0x00007ffd,
129
+ 0x00000000, 0x00007ffe, 0x00000000, 0x00007fff, 0x00000000, 0x00008000,
130
+ 0x00000000, 0x00008001, 0x80000000, 0x00008000, 0xb776d5f5, 0x563562db,
131
+ 0xfff00000, 0x00007fff, 0xfff00000, 0x00008000, 0xffff0000, 0x00007fff,
132
+ 0xffff0000, 0x00008000, 0xffffffff, 0x00007fff, 0xffffffff, 0x00008000,
133
+ 0xffffffff, 0xff007fff, 0xffffffff, 0xff008000, 0xffffffff, 0xffff7fff,
134
+ 0xffffffff, 0xffff8000, 0xffffffff, 0xffffffff, 0x00000000, 0x00000000,
135
+ 0x00000000, 0x00007ffe, 0x00000000, 0x00007fff, 0x00000000, 0x00008000,
136
+ 0x00000000, 0x00008001, 0x00000000, 0x00008002, 0x00000000, 0x0000ffff,
137
+ 0x80000000, 0x0000ffff, 0xb776d5f5, 0x5635e2da, 0xfff00000, 0x0000fffe,
138
+ 0xfff00000, 0x0000ffff, 0xffff0000, 0x0000fffe, 0xffff0000, 0x0000ffff,
139
+ 0xffffffff, 0x0000fffe, 0xffffffff, 0x0000ffff, 0xffffffff, 0xff00fffe,
140
+ 0xffffffff, 0xff00ffff, 0xffffffff, 0xfffffffe, 0xffffffff, 0xffffffff,
141
+ 0x00000000, 0x00007ffe, 0x00000000, 0x00007fff, 0x00000000, 0x0000fffd,
142
+ 0x00000000, 0x0000fffe, 0x00000000, 0x0000ffff, 0x00000000, 0x00010000,
143
+ 0x00000000, 0x00010001, 0x00000000, 0x00017ffe, 0x00000000, 0x00017fff,
144
+ 0x80000000, 0x00010000, 0xb776d5f5, 0x5635e2db, 0xfff00000, 0x0000ffff,
145
+ 0xfff00000, 0x00010000, 0xffff0000, 0x0000ffff, 0xffff0000, 0x00010000,
146
+ 0xffffffff, 0x0000ffff, 0xffffffff, 0x00010000, 0xffffffff, 0xff00ffff,
147
+ 0xffffffff, 0xff010000, 0xffffffff, 0xffffffff, 0x00000000, 0x00000000,
148
+ 0x00000000, 0x00007fff, 0x00000000, 0x00008000, 0x00000000, 0x0000fffe,
149
+ 0x00000000, 0x0000ffff, 0x00000000, 0x00010000, 0x00000000, 0x00010001,
150
+ 0x00000000, 0x00010002, 0x00000000, 0x00017fff, 0x00000000, 0x00018000,
151
+ 0x00000000, 0x0001ffff, 0x80000000, 0x00ffffff, 0xb776d5f5, 0x5734e2da,
152
+ 0xfff00000, 0x00fffffe, 0xfff00000, 0x00ffffff, 0xffff0000, 0x00fffffe,
153
+ 0xffff0000, 0x00ffffff, 0xffffffff, 0x00fffffe, 0xffffffff, 0x00ffffff,
154
+ 0xffffffff, 0xfffffffe, 0xffffffff, 0xffffffff, 0x00000000, 0x00fefffe,
155
+ 0x00000000, 0x00feffff, 0x00000000, 0x00ff7ffe, 0x00000000, 0x00ff7fff,
156
+ 0x00000000, 0x00fffffd, 0x00000000, 0x00fffffe, 0x00000000, 0x00ffffff,
157
+ 0x00000000, 0x01000000, 0x00000000, 0x01000001, 0x00000000, 0x01007ffe,
158
+ 0x00000000, 0x01007fff, 0x00000000, 0x0100fffe, 0x00000000, 0x0100ffff,
159
+ 0x80000000, 0x01000000, 0xb776d5f5, 0x5734e2db, 0xfff00000, 0x00ffffff,
160
+ 0xfff00000, 0x01000000, 0xffff0000, 0x00ffffff, 0xffff0000, 0x01000000,
161
+ 0xffffffff, 0x00ffffff, 0xffffffff, 0x01000000, 0xffffffff, 0xffffffff,
162
+ 0x00000000, 0x00000000, 0x00000000, 0x00feffff, 0x00000000, 0x00ff0000,
163
+ 0x00000000, 0x00ff7fff, 0x00000000, 0x00ff8000, 0x00000000, 0x00fffffe,
164
+ 0x00000000, 0x00ffffff, 0x00000000, 0x01000000, 0x00000000, 0x01000001,
165
+ 0x00000000, 0x01000002, 0x00000000, 0x01007fff, 0x00000000, 0x01008000,
166
+ 0x00000000, 0x0100ffff, 0x00000000, 0x01010000, 0x00000000, 0x01ffffff,
167
+ 0x80000000, 0x5634e2db, 0xb776d5f5, 0xac69c5b6, 0xfff00000, 0x5634e2da,
168
+ 0xfff00000, 0x5634e2db, 0xffff0000, 0x5634e2da, 0xffff0000, 0x5634e2db,
169
+ 0xffffffff, 0x5634e2da, 0xffffffff, 0x5634e2db, 0x00000000, 0x5534e2da,
170
+ 0x00000000, 0x5534e2db, 0x00000000, 0x5633e2da, 0x00000000, 0x5633e2db,
171
+ 0x00000000, 0x563462da, 0x00000000, 0x563462db, 0x00000000, 0x5634e2d9,
172
+ 0x00000000, 0x5634e2da, 0x00000000, 0x5634e2db, 0x00000000, 0x5634e2dc,
173
+ 0x00000000, 0x5634e2dd, 0x00000000, 0x563562da, 0x00000000, 0x563562db,
174
+ 0x00000000, 0x5635e2da, 0x00000000, 0x5635e2db, 0x00000000, 0x5734e2da,
175
+ 0x00000000, 0x5734e2db, 0x80000000, 0xb776d5f5, 0xb776d5f6, 0x0dabb8d0,
176
+ 0xfff00000, 0xb776d5f4, 0xfff00000, 0xb776d5f5, 0xffff0000, 0xb776d5f4,
177
+ 0xffff0000, 0xb776d5f5, 0xffffffff, 0xb776d5f4, 0xffffffff, 0xb776d5f5,
178
+ 0x00000000, 0xb676d5f4, 0x00000000, 0xb676d5f5, 0x00000000, 0xb775d5f4,
179
+ 0x00000000, 0xb775d5f5, 0x00000000, 0xb77655f4, 0x00000000, 0xb77655f5,
180
+ 0x00000000, 0xb776d5f3, 0x00000000, 0xb776d5f4, 0x00000000, 0xb776d5f5,
181
+ 0x00000000, 0xb776d5f6, 0x00000000, 0xb776d5f7, 0x00000000, 0xb77755f4,
182
+ 0x00000000, 0xb77755f5, 0x00000000, 0xb777d5f4, 0x00000000, 0xb777d5f5,
183
+ 0x00000000, 0xb876d5f4, 0x00000000, 0xb876d5f5, 0x00000001, 0x0dabb8d0,
184
+ 0x80000000, 0xffffffff, 0xb776d5f6, 0x5634e2da, 0xfff00000, 0xfffffffe,
185
+ 0xfff00000, 0xffffffff, 0xffff0000, 0xfffffffe, 0xffff0000, 0xffffffff,
186
+ 0xffffffff, 0xfffffffe, 0xffffffff, 0xffffffff, 0x00000000, 0xfefffffe,
187
+ 0x00000000, 0xfeffffff, 0x00000000, 0xfffefffe, 0x00000000, 0xfffeffff,
188
+ 0x00000000, 0xffff7ffe, 0x00000000, 0xffff7fff, 0x00000000, 0xfffffffd,
189
+ 0x00000000, 0xfffffffe, 0x00000000, 0xffffffff, 0x00000001, 0x00000000,
190
+ 0x00000001, 0x00000001, 0x00000001, 0x00007ffe, 0x00000001, 0x00007fff,
191
+ 0x00000001, 0x0000fffe, 0x00000001, 0x0000ffff, 0x00000001, 0x00fffffe,
192
+ 0x00000001, 0x00ffffff, 0x00000001, 0x5634e2da, 0x00000001, 0xb776d5f4,
193
+ 0x80000001, 0x00000000, 0xb776d5f6, 0x5634e2db, 0xfff00000, 0xffffffff,
194
+ 0xfff00001, 0x00000000, 0xffff0000, 0xffffffff, 0xffff0001, 0x00000000,
195
+ 0xffffffff, 0xffffffff, 0x00000000, 0x00000000, 0x00000000, 0xfeffffff,
196
+ 0x00000000, 0xff000000, 0x00000000, 0xfffeffff, 0x00000000, 0xffff0000,
197
+ 0x00000000, 0xffff7fff, 0x00000000, 0xffff8000, 0x00000000, 0xfffffffe,
198
+ 0x00000000, 0xffffffff, 0x00000001, 0x00000000, 0x00000001, 0x00000001,
199
+ 0x00000001, 0x00000002, 0x00000001, 0x00007fff, 0x00000001, 0x00008000,
200
+ 0x00000001, 0x0000ffff, 0x00000001, 0x00010000, 0x00000001, 0x00ffffff,
201
+ 0x00000001, 0x01000000, 0x00000001, 0x5634e2db, 0x00000001, 0xb776d5f5,
202
+ 0x00000001, 0xffffffff, 0x8000ffff, 0xffffffff, 0xb777d5f5, 0x5634e2da,
203
+ 0xfff0ffff, 0xfffffffe, 0xfff0ffff, 0xffffffff, 0xffffffff, 0xfffffffe,
204
+ 0xffffffff, 0xffffffff, 0x0000fffe, 0xfffffffe, 0x0000fffe, 0xffffffff,
205
+ 0x0000ffff, 0xfefffffe, 0x0000ffff, 0xfeffffff, 0x0000ffff, 0xfffefffe,
206
+ 0x0000ffff, 0xfffeffff, 0x0000ffff, 0xffff7ffe, 0x0000ffff, 0xffff7fff,
207
+ 0x0000ffff, 0xfffffffd, 0x0000ffff, 0xfffffffe, 0x0000ffff, 0xffffffff,
208
+ 0x00010000, 0x00000000, 0x00010000, 0x00000001, 0x00010000, 0x00007ffe,
209
+ 0x00010000, 0x00007fff, 0x00010000, 0x0000fffe, 0x00010000, 0x0000ffff,
210
+ 0x00010000, 0x00fffffe, 0x00010000, 0x00ffffff, 0x00010000, 0x5634e2da,
211
+ 0x00010000, 0xb776d5f4, 0x00010000, 0xfffffffe, 0x00010000, 0xffffffff,
212
+ 0x80010000, 0x00000000, 0xb777d5f5, 0x5634e2db, 0xfff0ffff, 0xffffffff,
213
+ 0xfff10000, 0x00000000, 0xffffffff, 0xffffffff, 0x00000000, 0x00000000,
214
+ 0x0000fffe, 0xffffffff, 0x0000ffff, 0x00000000, 0x0000ffff, 0xfeffffff,
215
+ 0x0000ffff, 0xff000000, 0x0000ffff, 0xfffeffff, 0x0000ffff, 0xffff0000,
216
+ 0x0000ffff, 0xffff7fff, 0x0000ffff, 0xffff8000, 0x0000ffff, 0xfffffffe,
217
+ 0x0000ffff, 0xffffffff, 0x00010000, 0x00000000, 0x00010000, 0x00000001,
218
+ 0x00010000, 0x00000002, 0x00010000, 0x00007fff, 0x00010000, 0x00008000,
219
+ 0x00010000, 0x0000ffff, 0x00010000, 0x00010000, 0x00010000, 0x00ffffff,
220
+ 0x00010000, 0x01000000, 0x00010000, 0x5634e2db, 0x00010000, 0xb776d5f5,
221
+ 0x00010000, 0xffffffff, 0x00010001, 0x00000000, 0x0001ffff, 0xffffffff,
222
+ 0x800fffff, 0xffffffff, 0xb786d5f5, 0x5634e2da, 0xffffffff, 0xfffffffe,
223
+ 0xffffffff, 0xffffffff, 0x000effff, 0xfffffffe, 0x000effff, 0xffffffff,
224
+ 0x000ffffe, 0xfffffffe, 0x000ffffe, 0xffffffff, 0x000fffff, 0xfefffffe,
225
+ 0x000fffff, 0xfeffffff, 0x000fffff, 0xfffefffe, 0x000fffff, 0xfffeffff,
226
+ 0x000fffff, 0xffff7ffe, 0x000fffff, 0xffff7fff, 0x000fffff, 0xfffffffd,
227
+ 0x000fffff, 0xfffffffe, 0x000fffff, 0xffffffff, 0x00100000, 0x00000000,
228
+ 0x00100000, 0x00000001, 0x00100000, 0x00007ffe, 0x00100000, 0x00007fff,
229
+ 0x00100000, 0x0000fffe, 0x00100000, 0x0000ffff, 0x00100000, 0x00fffffe,
230
+ 0x00100000, 0x00ffffff, 0x00100000, 0x5634e2da, 0x00100000, 0xb776d5f4,
231
+ 0x00100000, 0xfffffffe, 0x00100000, 0xffffffff, 0x0010ffff, 0xfffffffe,
232
+ 0x0010ffff, 0xffffffff, 0x80100000, 0x00000000, 0xb786d5f5, 0x5634e2db,
233
+ 0xffffffff, 0xffffffff, 0x00000000, 0x00000000, 0x000effff, 0xffffffff,
234
+ 0x000f0000, 0x00000000, 0x000ffffe, 0xffffffff, 0x000fffff, 0x00000000,
235
+ 0x000fffff, 0xfeffffff, 0x000fffff, 0xff000000, 0x000fffff, 0xfffeffff,
236
+ 0x000fffff, 0xffff0000, 0x000fffff, 0xffff7fff, 0x000fffff, 0xffff8000,
237
+ 0x000fffff, 0xfffffffe, 0x000fffff, 0xffffffff, 0x00100000, 0x00000000,
238
+ 0x00100000, 0x00000001, 0x00100000, 0x00000002, 0x00100000, 0x00007fff,
239
+ 0x00100000, 0x00008000, 0x00100000, 0x0000ffff, 0x00100000, 0x00010000,
240
+ 0x00100000, 0x00ffffff, 0x00100000, 0x01000000, 0x00100000, 0x5634e2db,
241
+ 0x00100000, 0xb776d5f5, 0x00100000, 0xffffffff, 0x00100001, 0x00000000,
242
+ 0x0010ffff, 0xffffffff, 0x00110000, 0x00000000, 0x001fffff, 0xffffffff,
243
+ 0xd634e2db, 0xb776d5f5, 0x0dabb8d1, 0x0dabb8d0, 0x5624e2db, 0xb776d5f4,
244
+ 0x5624e2db, 0xb776d5f5, 0x5633e2db, 0xb776d5f4, 0x5633e2db, 0xb776d5f5,
245
+ 0x5634e2da, 0xb776d5f4, 0x5634e2da, 0xb776d5f5, 0x5634e2db, 0xb676d5f4,
246
+ 0x5634e2db, 0xb676d5f5, 0x5634e2db, 0xb775d5f4, 0x5634e2db, 0xb775d5f5,
247
+ 0x5634e2db, 0xb77655f4, 0x5634e2db, 0xb77655f5, 0x5634e2db, 0xb776d5f3,
248
+ 0x5634e2db, 0xb776d5f4, 0x5634e2db, 0xb776d5f5, 0x5634e2db, 0xb776d5f6,
249
+ 0x5634e2db, 0xb776d5f7, 0x5634e2db, 0xb77755f4, 0x5634e2db, 0xb77755f5,
250
+ 0x5634e2db, 0xb777d5f4, 0x5634e2db, 0xb777d5f5, 0x5634e2db, 0xb876d5f4,
251
+ 0x5634e2db, 0xb876d5f5, 0x5634e2dc, 0x0dabb8d0, 0x5634e2dc, 0x6eedabea,
252
+ 0x5634e2dc, 0xb776d5f4, 0x5634e2dc, 0xb776d5f5, 0x5635e2db, 0xb776d5f4,
253
+ 0x5635e2db, 0xb776d5f5, 0x5644e2db, 0xb776d5f4, 0x5644e2db, 0xb776d5f5,
254
+ 0xffffffff, 0xffffffff, 0x3776d5f5, 0x5634e2da, 0x7fefffff, 0xfffffffe,
255
+ 0x7fefffff, 0xffffffff, 0x7ffeffff, 0xfffffffe, 0x7ffeffff, 0xffffffff,
256
+ 0x7ffffffe, 0xfffffffe, 0x7ffffffe, 0xffffffff, 0x7fffffff, 0xfefffffe,
257
+ 0x7fffffff, 0xfeffffff, 0x7fffffff, 0xfffefffe, 0x7fffffff, 0xfffeffff,
258
+ 0x7fffffff, 0xffff7ffe, 0x7fffffff, 0xffff7fff, 0x7fffffff, 0xfffffffd,
259
+ 0x7fffffff, 0xfffffffe, 0x7fffffff, 0xffffffff, 0x80000000, 0x00000000,
260
+ 0x80000000, 0x00000001, 0x80000000, 0x00007ffe, 0x80000000, 0x00007fff,
261
+ 0x80000000, 0x0000fffe, 0x80000000, 0x0000ffff, 0x80000000, 0x00fffffe,
262
+ 0x80000000, 0x00ffffff, 0x80000000, 0x5634e2da, 0x80000000, 0xb776d5f4,
263
+ 0x80000000, 0xfffffffe, 0x80000000, 0xffffffff, 0x8000ffff, 0xfffffffe,
264
+ 0x8000ffff, 0xffffffff, 0x800fffff, 0xfffffffe, 0x800fffff, 0xffffffff,
265
+ 0xd634e2db, 0xb776d5f4
266
+ ];
267
+ toInt32s(TEST_ADD_BITS);
268
+
269
+ var TEST_SUB_BITS = [
270
+ 0x00000000, 0x00000000, 0xc8892a0a, 0xa9cb1d25, 0x80100000, 0x00000001,
271
+ 0x80100000, 0x00000000, 0x80010000, 0x00000001, 0x80010000, 0x00000000,
272
+ 0x80000001, 0x00000001, 0x80000001, 0x00000000, 0x80000000, 0x01000001,
273
+ 0x80000000, 0x01000000, 0x80000000, 0x00010001, 0x80000000, 0x00010000,
274
+ 0x80000000, 0x00008001, 0x80000000, 0x00008000, 0x80000000, 0x00000002,
275
+ 0x80000000, 0x00000001, 0x80000000, 0x00000000, 0x7fffffff, 0xffffffff,
276
+ 0x7fffffff, 0xfffffffe, 0x7fffffff, 0xffff8001, 0x7fffffff, 0xffff8000,
277
+ 0x7fffffff, 0xffff0001, 0x7fffffff, 0xffff0000, 0x7fffffff, 0xff000001,
278
+ 0x7fffffff, 0xff000000, 0x7fffffff, 0xa9cb1d25, 0x7fffffff, 0x48892a0b,
279
+ 0x7fffffff, 0x00000001, 0x7fffffff, 0x00000000, 0x7fff0000, 0x00000001,
280
+ 0x7fff0000, 0x00000000, 0x7ff00000, 0x00000001, 0x7ff00000, 0x00000000,
281
+ 0x29cb1d24, 0x48892a0b, 0x00000000, 0x00000001, 0x3776d5f5, 0x5634e2db,
282
+ 0x00000000, 0x00000000, 0xb786d5f5, 0x5634e2dc, 0xb786d5f5, 0x5634e2db,
283
+ 0xb777d5f5, 0x5634e2dc, 0xb777d5f5, 0x5634e2db, 0xb776d5f6, 0x5634e2dc,
284
+ 0xb776d5f6, 0x5634e2db, 0xb776d5f5, 0x5734e2dc, 0xb776d5f5, 0x5734e2db,
285
+ 0xb776d5f5, 0x5635e2dc, 0xb776d5f5, 0x5635e2db, 0xb776d5f5, 0x563562dc,
286
+ 0xb776d5f5, 0x563562db, 0xb776d5f5, 0x5634e2dd, 0xb776d5f5, 0x5634e2dc,
287
+ 0xb776d5f5, 0x5634e2db, 0xb776d5f5, 0x5634e2da, 0xb776d5f5, 0x5634e2d9,
288
+ 0xb776d5f5, 0x563462dc, 0xb776d5f5, 0x563462db, 0xb776d5f5, 0x5633e2dc,
289
+ 0xb776d5f5, 0x5633e2db, 0xb776d5f5, 0x5534e2dc, 0xb776d5f5, 0x5534e2db,
290
+ 0xb776d5f5, 0x00000000, 0xb776d5f4, 0x9ebe0ce6, 0xb776d5f4, 0x5634e2dc,
291
+ 0xb776d5f4, 0x5634e2db, 0xb775d5f5, 0x5634e2dc, 0xb775d5f5, 0x5634e2db,
292
+ 0xb766d5f5, 0x5634e2dc, 0xb766d5f5, 0x5634e2db, 0x6141f319, 0x9ebe0ce6,
293
+ 0x3776d5f5, 0x5634e2dc, 0x7fefffff, 0xffffffff, 0x48792a0a, 0xa9cb1d24,
294
+ 0x00000000, 0x00000000, 0xffffffff, 0xffffffff, 0xfff10000, 0x00000000,
295
+ 0xfff0ffff, 0xffffffff, 0xfff00001, 0x00000000, 0xfff00000, 0xffffffff,
296
+ 0xfff00000, 0x01000000, 0xfff00000, 0x00ffffff, 0xfff00000, 0x00010000,
297
+ 0xfff00000, 0x0000ffff, 0xfff00000, 0x00008000, 0xfff00000, 0x00007fff,
298
+ 0xfff00000, 0x00000001, 0xfff00000, 0x00000000, 0xffefffff, 0xffffffff,
299
+ 0xffefffff, 0xfffffffe, 0xffefffff, 0xfffffffd, 0xffefffff, 0xffff8000,
300
+ 0xffefffff, 0xffff7fff, 0xffefffff, 0xffff0000, 0xffefffff, 0xfffeffff,
301
+ 0xffefffff, 0xff000000, 0xffefffff, 0xfeffffff, 0xffefffff, 0xa9cb1d24,
302
+ 0xffefffff, 0x48892a0a, 0xffefffff, 0x00000000, 0xffeffffe, 0xffffffff,
303
+ 0xffef0000, 0x00000000, 0xffeeffff, 0xffffffff, 0xffe00000, 0x00000000,
304
+ 0xffdfffff, 0xffffffff, 0xa9bb1d24, 0x48892a0a, 0x7ff00000, 0x00000000,
305
+ 0x7ff00000, 0x00000000, 0x48792a0a, 0xa9cb1d25, 0x00000000, 0x00000001,
306
+ 0x00000000, 0x00000000, 0xfff10000, 0x00000001, 0xfff10000, 0x00000000,
307
+ 0xfff00001, 0x00000001, 0xfff00001, 0x00000000, 0xfff00000, 0x01000001,
308
+ 0xfff00000, 0x01000000, 0xfff00000, 0x00010001, 0xfff00000, 0x00010000,
309
+ 0xfff00000, 0x00008001, 0xfff00000, 0x00008000, 0xfff00000, 0x00000002,
310
+ 0xfff00000, 0x00000001, 0xfff00000, 0x00000000, 0xffefffff, 0xffffffff,
311
+ 0xffefffff, 0xfffffffe, 0xffefffff, 0xffff8001, 0xffefffff, 0xffff8000,
312
+ 0xffefffff, 0xffff0001, 0xffefffff, 0xffff0000, 0xffefffff, 0xff000001,
313
+ 0xffefffff, 0xff000000, 0xffefffff, 0xa9cb1d25, 0xffefffff, 0x48892a0b,
314
+ 0xffefffff, 0x00000001, 0xffefffff, 0x00000000, 0xffef0000, 0x00000001,
315
+ 0xffef0000, 0x00000000, 0xffe00000, 0x00000001, 0xffe00000, 0x00000000,
316
+ 0xa9bb1d24, 0x48892a0b, 0x7ff00000, 0x00000001, 0x7ffeffff, 0xffffffff,
317
+ 0x48882a0a, 0xa9cb1d24, 0x000f0000, 0x00000000, 0x000effff, 0xffffffff,
318
+ 0x00000000, 0x00000000, 0xffffffff, 0xffffffff, 0xffff0001, 0x00000000,
319
+ 0xffff0000, 0xffffffff, 0xffff0000, 0x01000000, 0xffff0000, 0x00ffffff,
320
+ 0xffff0000, 0x00010000, 0xffff0000, 0x0000ffff, 0xffff0000, 0x00008000,
321
+ 0xffff0000, 0x00007fff, 0xffff0000, 0x00000001, 0xffff0000, 0x00000000,
322
+ 0xfffeffff, 0xffffffff, 0xfffeffff, 0xfffffffe, 0xfffeffff, 0xfffffffd,
323
+ 0xfffeffff, 0xffff8000, 0xfffeffff, 0xffff7fff, 0xfffeffff, 0xffff0000,
324
+ 0xfffeffff, 0xfffeffff, 0xfffeffff, 0xff000000, 0xfffeffff, 0xfeffffff,
325
+ 0xfffeffff, 0xa9cb1d24, 0xfffeffff, 0x48892a0a, 0xfffeffff, 0x00000000,
326
+ 0xfffefffe, 0xffffffff, 0xfffe0000, 0x00000000, 0xfffdffff, 0xffffffff,
327
+ 0xffef0000, 0x00000000, 0xffeeffff, 0xffffffff, 0xa9ca1d24, 0x48892a0a,
328
+ 0x7fff0000, 0x00000000, 0x7fff0000, 0x00000000, 0x48882a0a, 0xa9cb1d25,
329
+ 0x000f0000, 0x00000001, 0x000f0000, 0x00000000, 0x00000000, 0x00000001,
330
+ 0x00000000, 0x00000000, 0xffff0001, 0x00000001, 0xffff0001, 0x00000000,
331
+ 0xffff0000, 0x01000001, 0xffff0000, 0x01000000, 0xffff0000, 0x00010001,
332
+ 0xffff0000, 0x00010000, 0xffff0000, 0x00008001, 0xffff0000, 0x00008000,
333
+ 0xffff0000, 0x00000002, 0xffff0000, 0x00000001, 0xffff0000, 0x00000000,
334
+ 0xfffeffff, 0xffffffff, 0xfffeffff, 0xfffffffe, 0xfffeffff, 0xffff8001,
335
+ 0xfffeffff, 0xffff8000, 0xfffeffff, 0xffff0001, 0xfffeffff, 0xffff0000,
336
+ 0xfffeffff, 0xff000001, 0xfffeffff, 0xff000000, 0xfffeffff, 0xa9cb1d25,
337
+ 0xfffeffff, 0x48892a0b, 0xfffeffff, 0x00000001, 0xfffeffff, 0x00000000,
338
+ 0xfffe0000, 0x00000001, 0xfffe0000, 0x00000000, 0xffef0000, 0x00000001,
339
+ 0xffef0000, 0x00000000, 0xa9ca1d24, 0x48892a0b, 0x7fff0000, 0x00000001,
340
+ 0x7ffffffe, 0xffffffff, 0x48892a09, 0xa9cb1d24, 0x000fffff, 0x00000000,
341
+ 0x000ffffe, 0xffffffff, 0x0000ffff, 0x00000000, 0x0000fffe, 0xffffffff,
342
+ 0x00000000, 0x00000000, 0xffffffff, 0xffffffff, 0xffffffff, 0x01000000,
343
+ 0xffffffff, 0x00ffffff, 0xffffffff, 0x00010000, 0xffffffff, 0x0000ffff,
344
+ 0xffffffff, 0x00008000, 0xffffffff, 0x00007fff, 0xffffffff, 0x00000001,
345
+ 0xffffffff, 0x00000000, 0xfffffffe, 0xffffffff, 0xfffffffe, 0xfffffffe,
346
+ 0xfffffffe, 0xfffffffd, 0xfffffffe, 0xffff8000, 0xfffffffe, 0xffff7fff,
347
+ 0xfffffffe, 0xffff0000, 0xfffffffe, 0xfffeffff, 0xfffffffe, 0xff000000,
348
+ 0xfffffffe, 0xfeffffff, 0xfffffffe, 0xa9cb1d24, 0xfffffffe, 0x48892a0a,
349
+ 0xfffffffe, 0x00000000, 0xfffffffd, 0xffffffff, 0xfffeffff, 0x00000000,
350
+ 0xfffefffe, 0xffffffff, 0xffefffff, 0x00000000, 0xffeffffe, 0xffffffff,
351
+ 0xa9cb1d23, 0x48892a0a, 0x7fffffff, 0x00000000, 0x7fffffff, 0x00000000,
352
+ 0x48892a09, 0xa9cb1d25, 0x000fffff, 0x00000001, 0x000fffff, 0x00000000,
353
+ 0x0000ffff, 0x00000001, 0x0000ffff, 0x00000000, 0x00000000, 0x00000001,
354
+ 0x00000000, 0x00000000, 0xffffffff, 0x01000001, 0xffffffff, 0x01000000,
355
+ 0xffffffff, 0x00010001, 0xffffffff, 0x00010000, 0xffffffff, 0x00008001,
356
+ 0xffffffff, 0x00008000, 0xffffffff, 0x00000002, 0xffffffff, 0x00000001,
357
+ 0xffffffff, 0x00000000, 0xfffffffe, 0xffffffff, 0xfffffffe, 0xfffffffe,
358
+ 0xfffffffe, 0xffff8001, 0xfffffffe, 0xffff8000, 0xfffffffe, 0xffff0001,
359
+ 0xfffffffe, 0xffff0000, 0xfffffffe, 0xff000001, 0xfffffffe, 0xff000000,
360
+ 0xfffffffe, 0xa9cb1d25, 0xfffffffe, 0x48892a0b, 0xfffffffe, 0x00000001,
361
+ 0xfffffffe, 0x00000000, 0xfffeffff, 0x00000001, 0xfffeffff, 0x00000000,
362
+ 0xffefffff, 0x00000001, 0xffefffff, 0x00000000, 0xa9cb1d23, 0x48892a0b,
363
+ 0x7fffffff, 0x00000001, 0x7fffffff, 0xfeffffff, 0x48892a0a, 0xa8cb1d24,
364
+ 0x000fffff, 0xff000000, 0x000fffff, 0xfeffffff, 0x0000ffff, 0xff000000,
365
+ 0x0000ffff, 0xfeffffff, 0x00000000, 0xff000000, 0x00000000, 0xfeffffff,
366
+ 0x00000000, 0x00000000, 0xffffffff, 0xffffffff, 0xffffffff, 0xff010000,
367
+ 0xffffffff, 0xff00ffff, 0xffffffff, 0xff008000, 0xffffffff, 0xff007fff,
368
+ 0xffffffff, 0xff000001, 0xffffffff, 0xff000000, 0xffffffff, 0xfeffffff,
369
+ 0xffffffff, 0xfefffffe, 0xffffffff, 0xfefffffd, 0xffffffff, 0xfeff8000,
370
+ 0xffffffff, 0xfeff7fff, 0xffffffff, 0xfeff0000, 0xffffffff, 0xfefeffff,
371
+ 0xffffffff, 0xfe000000, 0xffffffff, 0xfdffffff, 0xffffffff, 0xa8cb1d24,
372
+ 0xffffffff, 0x47892a0a, 0xfffffffe, 0xff000000, 0xfffffffe, 0xfeffffff,
373
+ 0xfffeffff, 0xff000000, 0xfffeffff, 0xfeffffff, 0xffefffff, 0xff000000,
374
+ 0xffefffff, 0xfeffffff, 0xa9cb1d24, 0x47892a0a, 0x7fffffff, 0xff000000,
375
+ 0x7fffffff, 0xff000000, 0x48892a0a, 0xa8cb1d25, 0x000fffff, 0xff000001,
376
+ 0x000fffff, 0xff000000, 0x0000ffff, 0xff000001, 0x0000ffff, 0xff000000,
377
+ 0x00000000, 0xff000001, 0x00000000, 0xff000000, 0x00000000, 0x00000001,
378
+ 0x00000000, 0x00000000, 0xffffffff, 0xff010001, 0xffffffff, 0xff010000,
379
+ 0xffffffff, 0xff008001, 0xffffffff, 0xff008000, 0xffffffff, 0xff000002,
380
+ 0xffffffff, 0xff000001, 0xffffffff, 0xff000000, 0xffffffff, 0xfeffffff,
381
+ 0xffffffff, 0xfefffffe, 0xffffffff, 0xfeff8001, 0xffffffff, 0xfeff8000,
382
+ 0xffffffff, 0xfeff0001, 0xffffffff, 0xfeff0000, 0xffffffff, 0xfe000001,
383
+ 0xffffffff, 0xfe000000, 0xffffffff, 0xa8cb1d25, 0xffffffff, 0x47892a0b,
384
+ 0xfffffffe, 0xff000001, 0xfffffffe, 0xff000000, 0xfffeffff, 0xff000001,
385
+ 0xfffeffff, 0xff000000, 0xffefffff, 0xff000001, 0xffefffff, 0xff000000,
386
+ 0xa9cb1d24, 0x47892a0b, 0x7fffffff, 0xff000001, 0x7fffffff, 0xfffeffff,
387
+ 0x48892a0a, 0xa9ca1d24, 0x000fffff, 0xffff0000, 0x000fffff, 0xfffeffff,
388
+ 0x0000ffff, 0xffff0000, 0x0000ffff, 0xfffeffff, 0x00000000, 0xffff0000,
389
+ 0x00000000, 0xfffeffff, 0x00000000, 0x00ff0000, 0x00000000, 0x00feffff,
390
+ 0x00000000, 0x00000000, 0xffffffff, 0xffffffff, 0xffffffff, 0xffff8000,
391
+ 0xffffffff, 0xffff7fff, 0xffffffff, 0xffff0001, 0xffffffff, 0xffff0000,
392
+ 0xffffffff, 0xfffeffff, 0xffffffff, 0xfffefffe, 0xffffffff, 0xfffefffd,
393
+ 0xffffffff, 0xfffe8000, 0xffffffff, 0xfffe7fff, 0xffffffff, 0xfffe0000,
394
+ 0xffffffff, 0xfffdffff, 0xffffffff, 0xfeff0000, 0xffffffff, 0xfefeffff,
395
+ 0xffffffff, 0xa9ca1d24, 0xffffffff, 0x48882a0a, 0xfffffffe, 0xffff0000,
396
+ 0xfffffffe, 0xfffeffff, 0xfffeffff, 0xffff0000, 0xfffeffff, 0xfffeffff,
397
+ 0xffefffff, 0xffff0000, 0xffefffff, 0xfffeffff, 0xa9cb1d24, 0x48882a0a,
398
+ 0x7fffffff, 0xffff0000, 0x7fffffff, 0xffff0000, 0x48892a0a, 0xa9ca1d25,
399
+ 0x000fffff, 0xffff0001, 0x000fffff, 0xffff0000, 0x0000ffff, 0xffff0001,
400
+ 0x0000ffff, 0xffff0000, 0x00000000, 0xffff0001, 0x00000000, 0xffff0000,
401
+ 0x00000000, 0x00ff0001, 0x00000000, 0x00ff0000, 0x00000000, 0x00000001,
402
+ 0x00000000, 0x00000000, 0xffffffff, 0xffff8001, 0xffffffff, 0xffff8000,
403
+ 0xffffffff, 0xffff0002, 0xffffffff, 0xffff0001, 0xffffffff, 0xffff0000,
404
+ 0xffffffff, 0xfffeffff, 0xffffffff, 0xfffefffe, 0xffffffff, 0xfffe8001,
405
+ 0xffffffff, 0xfffe8000, 0xffffffff, 0xfffe0001, 0xffffffff, 0xfffe0000,
406
+ 0xffffffff, 0xfeff0001, 0xffffffff, 0xfeff0000, 0xffffffff, 0xa9ca1d25,
407
+ 0xffffffff, 0x48882a0b, 0xfffffffe, 0xffff0001, 0xfffffffe, 0xffff0000,
408
+ 0xfffeffff, 0xffff0001, 0xfffeffff, 0xffff0000, 0xffefffff, 0xffff0001,
409
+ 0xffefffff, 0xffff0000, 0xa9cb1d24, 0x48882a0b, 0x7fffffff, 0xffff0001,
410
+ 0x7fffffff, 0xffff7fff, 0x48892a0a, 0xa9ca9d24, 0x000fffff, 0xffff8000,
411
+ 0x000fffff, 0xffff7fff, 0x0000ffff, 0xffff8000, 0x0000ffff, 0xffff7fff,
412
+ 0x00000000, 0xffff8000, 0x00000000, 0xffff7fff, 0x00000000, 0x00ff8000,
413
+ 0x00000000, 0x00ff7fff, 0x00000000, 0x00008000, 0x00000000, 0x00007fff,
414
+ 0x00000000, 0x00000000, 0xffffffff, 0xffffffff, 0xffffffff, 0xffff8001,
415
+ 0xffffffff, 0xffff8000, 0xffffffff, 0xffff7fff, 0xffffffff, 0xffff7ffe,
416
+ 0xffffffff, 0xffff7ffd, 0xffffffff, 0xffff0000, 0xffffffff, 0xfffeffff,
417
+ 0xffffffff, 0xfffe8000, 0xffffffff, 0xfffe7fff, 0xffffffff, 0xfeff8000,
418
+ 0xffffffff, 0xfeff7fff, 0xffffffff, 0xa9ca9d24, 0xffffffff, 0x4888aa0a,
419
+ 0xfffffffe, 0xffff8000, 0xfffffffe, 0xffff7fff, 0xfffeffff, 0xffff8000,
420
+ 0xfffeffff, 0xffff7fff, 0xffefffff, 0xffff8000, 0xffefffff, 0xffff7fff,
421
+ 0xa9cb1d24, 0x4888aa0a, 0x7fffffff, 0xffff8000, 0x7fffffff, 0xffff8000,
422
+ 0x48892a0a, 0xa9ca9d25, 0x000fffff, 0xffff8001, 0x000fffff, 0xffff8000,
423
+ 0x0000ffff, 0xffff8001, 0x0000ffff, 0xffff8000, 0x00000000, 0xffff8001,
424
+ 0x00000000, 0xffff8000, 0x00000000, 0x00ff8001, 0x00000000, 0x00ff8000,
425
+ 0x00000000, 0x00008001, 0x00000000, 0x00008000, 0x00000000, 0x00000001,
426
+ 0x00000000, 0x00000000, 0xffffffff, 0xffff8002, 0xffffffff, 0xffff8001,
427
+ 0xffffffff, 0xffff8000, 0xffffffff, 0xffff7fff, 0xffffffff, 0xffff7ffe,
428
+ 0xffffffff, 0xffff0001, 0xffffffff, 0xffff0000, 0xffffffff, 0xfffe8001,
429
+ 0xffffffff, 0xfffe8000, 0xffffffff, 0xfeff8001, 0xffffffff, 0xfeff8000,
430
+ 0xffffffff, 0xa9ca9d25, 0xffffffff, 0x4888aa0b, 0xfffffffe, 0xffff8001,
431
+ 0xfffffffe, 0xffff8000, 0xfffeffff, 0xffff8001, 0xfffeffff, 0xffff8000,
432
+ 0xffefffff, 0xffff8001, 0xffefffff, 0xffff8000, 0xa9cb1d24, 0x4888aa0b,
433
+ 0x7fffffff, 0xffff8001, 0x7fffffff, 0xfffffffe, 0x48892a0a, 0xa9cb1d23,
434
+ 0x000fffff, 0xffffffff, 0x000fffff, 0xfffffffe, 0x0000ffff, 0xffffffff,
435
+ 0x0000ffff, 0xfffffffe, 0x00000000, 0xffffffff, 0x00000000, 0xfffffffe,
436
+ 0x00000000, 0x00ffffff, 0x00000000, 0x00fffffe, 0x00000000, 0x0000ffff,
437
+ 0x00000000, 0x0000fffe, 0x00000000, 0x00007fff, 0x00000000, 0x00007ffe,
438
+ 0x00000000, 0x00000000, 0xffffffff, 0xffffffff, 0xffffffff, 0xfffffffe,
439
+ 0xffffffff, 0xfffffffd, 0xffffffff, 0xfffffffc, 0xffffffff, 0xffff7fff,
440
+ 0xffffffff, 0xffff7ffe, 0xffffffff, 0xfffeffff, 0xffffffff, 0xfffefffe,
441
+ 0xffffffff, 0xfeffffff, 0xffffffff, 0xfefffffe, 0xffffffff, 0xa9cb1d23,
442
+ 0xffffffff, 0x48892a09, 0xfffffffe, 0xffffffff, 0xfffffffe, 0xfffffffe,
443
+ 0xfffeffff, 0xffffffff, 0xfffeffff, 0xfffffffe, 0xffefffff, 0xffffffff,
444
+ 0xffefffff, 0xfffffffe, 0xa9cb1d24, 0x48892a09, 0x7fffffff, 0xffffffff,
445
+ 0x7fffffff, 0xffffffff, 0x48892a0a, 0xa9cb1d24, 0x00100000, 0x00000000,
446
+ 0x000fffff, 0xffffffff, 0x00010000, 0x00000000, 0x0000ffff, 0xffffffff,
447
+ 0x00000001, 0x00000000, 0x00000000, 0xffffffff, 0x00000000, 0x01000000,
448
+ 0x00000000, 0x00ffffff, 0x00000000, 0x00010000, 0x00000000, 0x0000ffff,
449
+ 0x00000000, 0x00008000, 0x00000000, 0x00007fff, 0x00000000, 0x00000001,
450
+ 0x00000000, 0x00000000, 0xffffffff, 0xffffffff, 0xffffffff, 0xfffffffe,
451
+ 0xffffffff, 0xfffffffd, 0xffffffff, 0xffff8000, 0xffffffff, 0xffff7fff,
452
+ 0xffffffff, 0xffff0000, 0xffffffff, 0xfffeffff, 0xffffffff, 0xff000000,
453
+ 0xffffffff, 0xfeffffff, 0xffffffff, 0xa9cb1d24, 0xffffffff, 0x48892a0a,
454
+ 0xffffffff, 0x00000000, 0xfffffffe, 0xffffffff, 0xffff0000, 0x00000000,
455
+ 0xfffeffff, 0xffffffff, 0xfff00000, 0x00000000, 0xffefffff, 0xffffffff,
456
+ 0xa9cb1d24, 0x48892a0a, 0x80000000, 0x00000000, 0x80000000, 0x00000000,
457
+ 0x48892a0a, 0xa9cb1d25, 0x00100000, 0x00000001, 0x00100000, 0x00000000,
458
+ 0x00010000, 0x00000001, 0x00010000, 0x00000000, 0x00000001, 0x00000001,
459
+ 0x00000001, 0x00000000, 0x00000000, 0x01000001, 0x00000000, 0x01000000,
460
+ 0x00000000, 0x00010001, 0x00000000, 0x00010000, 0x00000000, 0x00008001,
461
+ 0x00000000, 0x00008000, 0x00000000, 0x00000002, 0x00000000, 0x00000001,
462
+ 0x00000000, 0x00000000, 0xffffffff, 0xffffffff, 0xffffffff, 0xfffffffe,
463
+ 0xffffffff, 0xffff8001, 0xffffffff, 0xffff8000, 0xffffffff, 0xffff0001,
464
+ 0xffffffff, 0xffff0000, 0xffffffff, 0xff000001, 0xffffffff, 0xff000000,
465
+ 0xffffffff, 0xa9cb1d25, 0xffffffff, 0x48892a0b, 0xffffffff, 0x00000001,
466
+ 0xffffffff, 0x00000000, 0xffff0000, 0x00000001, 0xffff0000, 0x00000000,
467
+ 0xfff00000, 0x00000001, 0xfff00000, 0x00000000, 0xa9cb1d24, 0x48892a0b,
468
+ 0x80000000, 0x00000001, 0x80000000, 0x00000001, 0x48892a0a, 0xa9cb1d26,
469
+ 0x00100000, 0x00000002, 0x00100000, 0x00000001, 0x00010000, 0x00000002,
470
+ 0x00010000, 0x00000001, 0x00000001, 0x00000002, 0x00000001, 0x00000001,
471
+ 0x00000000, 0x01000002, 0x00000000, 0x01000001, 0x00000000, 0x00010002,
472
+ 0x00000000, 0x00010001, 0x00000000, 0x00008002, 0x00000000, 0x00008001,
473
+ 0x00000000, 0x00000003, 0x00000000, 0x00000002, 0x00000000, 0x00000001,
474
+ 0x00000000, 0x00000000, 0xffffffff, 0xffffffff, 0xffffffff, 0xffff8002,
475
+ 0xffffffff, 0xffff8001, 0xffffffff, 0xffff0002, 0xffffffff, 0xffff0001,
476
+ 0xffffffff, 0xff000002, 0xffffffff, 0xff000001, 0xffffffff, 0xa9cb1d26,
477
+ 0xffffffff, 0x48892a0c, 0xffffffff, 0x00000002, 0xffffffff, 0x00000001,
478
+ 0xffff0000, 0x00000002, 0xffff0000, 0x00000001, 0xfff00000, 0x00000002,
479
+ 0xfff00000, 0x00000001, 0xa9cb1d24, 0x48892a0c, 0x80000000, 0x00000002,
480
+ 0x80000000, 0x00000002, 0x48892a0a, 0xa9cb1d27, 0x00100000, 0x00000003,
481
+ 0x00100000, 0x00000002, 0x00010000, 0x00000003, 0x00010000, 0x00000002,
482
+ 0x00000001, 0x00000003, 0x00000001, 0x00000002, 0x00000000, 0x01000003,
483
+ 0x00000000, 0x01000002, 0x00000000, 0x00010003, 0x00000000, 0x00010002,
484
+ 0x00000000, 0x00008003, 0x00000000, 0x00008002, 0x00000000, 0x00000004,
485
+ 0x00000000, 0x00000003, 0x00000000, 0x00000002, 0x00000000, 0x00000001,
486
+ 0x00000000, 0x00000000, 0xffffffff, 0xffff8003, 0xffffffff, 0xffff8002,
487
+ 0xffffffff, 0xffff0003, 0xffffffff, 0xffff0002, 0xffffffff, 0xff000003,
488
+ 0xffffffff, 0xff000002, 0xffffffff, 0xa9cb1d27, 0xffffffff, 0x48892a0d,
489
+ 0xffffffff, 0x00000003, 0xffffffff, 0x00000002, 0xffff0000, 0x00000003,
490
+ 0xffff0000, 0x00000002, 0xfff00000, 0x00000003, 0xfff00000, 0x00000002,
491
+ 0xa9cb1d24, 0x48892a0d, 0x80000000, 0x00000003, 0x80000000, 0x00007fff,
492
+ 0x48892a0a, 0xa9cb9d24, 0x00100000, 0x00008000, 0x00100000, 0x00007fff,
493
+ 0x00010000, 0x00008000, 0x00010000, 0x00007fff, 0x00000001, 0x00008000,
494
+ 0x00000001, 0x00007fff, 0x00000000, 0x01008000, 0x00000000, 0x01007fff,
495
+ 0x00000000, 0x00018000, 0x00000000, 0x00017fff, 0x00000000, 0x00010000,
496
+ 0x00000000, 0x0000ffff, 0x00000000, 0x00008001, 0x00000000, 0x00008000,
497
+ 0x00000000, 0x00007fff, 0x00000000, 0x00007ffe, 0x00000000, 0x00007ffd,
498
+ 0x00000000, 0x00000000, 0xffffffff, 0xffffffff, 0xffffffff, 0xffff8000,
499
+ 0xffffffff, 0xffff7fff, 0xffffffff, 0xff008000, 0xffffffff, 0xff007fff,
500
+ 0xffffffff, 0xa9cb9d24, 0xffffffff, 0x4889aa0a, 0xffffffff, 0x00008000,
501
+ 0xffffffff, 0x00007fff, 0xffff0000, 0x00008000, 0xffff0000, 0x00007fff,
502
+ 0xfff00000, 0x00008000, 0xfff00000, 0x00007fff, 0xa9cb1d24, 0x4889aa0a,
503
+ 0x80000000, 0x00008000, 0x80000000, 0x00008000, 0x48892a0a, 0xa9cb9d25,
504
+ 0x00100000, 0x00008001, 0x00100000, 0x00008000, 0x00010000, 0x00008001,
505
+ 0x00010000, 0x00008000, 0x00000001, 0x00008001, 0x00000001, 0x00008000,
506
+ 0x00000000, 0x01008001, 0x00000000, 0x01008000, 0x00000000, 0x00018001,
507
+ 0x00000000, 0x00018000, 0x00000000, 0x00010001, 0x00000000, 0x00010000,
508
+ 0x00000000, 0x00008002, 0x00000000, 0x00008001, 0x00000000, 0x00008000,
509
+ 0x00000000, 0x00007fff, 0x00000000, 0x00007ffe, 0x00000000, 0x00000001,
510
+ 0x00000000, 0x00000000, 0xffffffff, 0xffff8001, 0xffffffff, 0xffff8000,
511
+ 0xffffffff, 0xff008001, 0xffffffff, 0xff008000, 0xffffffff, 0xa9cb9d25,
512
+ 0xffffffff, 0x4889aa0b, 0xffffffff, 0x00008001, 0xffffffff, 0x00008000,
513
+ 0xffff0000, 0x00008001, 0xffff0000, 0x00008000, 0xfff00000, 0x00008001,
514
+ 0xfff00000, 0x00008000, 0xa9cb1d24, 0x4889aa0b, 0x80000000, 0x00008001,
515
+ 0x80000000, 0x0000ffff, 0x48892a0a, 0xa9cc1d24, 0x00100000, 0x00010000,
516
+ 0x00100000, 0x0000ffff, 0x00010000, 0x00010000, 0x00010000, 0x0000ffff,
517
+ 0x00000001, 0x00010000, 0x00000001, 0x0000ffff, 0x00000000, 0x01010000,
518
+ 0x00000000, 0x0100ffff, 0x00000000, 0x00020000, 0x00000000, 0x0001ffff,
519
+ 0x00000000, 0x00018000, 0x00000000, 0x00017fff, 0x00000000, 0x00010001,
520
+ 0x00000000, 0x00010000, 0x00000000, 0x0000ffff, 0x00000000, 0x0000fffe,
521
+ 0x00000000, 0x0000fffd, 0x00000000, 0x00008000, 0x00000000, 0x00007fff,
522
+ 0x00000000, 0x00000000, 0xffffffff, 0xffffffff, 0xffffffff, 0xff010000,
523
+ 0xffffffff, 0xff00ffff, 0xffffffff, 0xa9cc1d24, 0xffffffff, 0x488a2a0a,
524
+ 0xffffffff, 0x00010000, 0xffffffff, 0x0000ffff, 0xffff0000, 0x00010000,
525
+ 0xffff0000, 0x0000ffff, 0xfff00000, 0x00010000, 0xfff00000, 0x0000ffff,
526
+ 0xa9cb1d24, 0x488a2a0a, 0x80000000, 0x00010000, 0x80000000, 0x00010000,
527
+ 0x48892a0a, 0xa9cc1d25, 0x00100000, 0x00010001, 0x00100000, 0x00010000,
528
+ 0x00010000, 0x00010001, 0x00010000, 0x00010000, 0x00000001, 0x00010001,
529
+ 0x00000001, 0x00010000, 0x00000000, 0x01010001, 0x00000000, 0x01010000,
530
+ 0x00000000, 0x00020001, 0x00000000, 0x00020000, 0x00000000, 0x00018001,
531
+ 0x00000000, 0x00018000, 0x00000000, 0x00010002, 0x00000000, 0x00010001,
532
+ 0x00000000, 0x00010000, 0x00000000, 0x0000ffff, 0x00000000, 0x0000fffe,
533
+ 0x00000000, 0x00008001, 0x00000000, 0x00008000, 0x00000000, 0x00000001,
534
+ 0x00000000, 0x00000000, 0xffffffff, 0xff010001, 0xffffffff, 0xff010000,
535
+ 0xffffffff, 0xa9cc1d25, 0xffffffff, 0x488a2a0b, 0xffffffff, 0x00010001,
536
+ 0xffffffff, 0x00010000, 0xffff0000, 0x00010001, 0xffff0000, 0x00010000,
537
+ 0xfff00000, 0x00010001, 0xfff00000, 0x00010000, 0xa9cb1d24, 0x488a2a0b,
538
+ 0x80000000, 0x00010001, 0x80000000, 0x00ffffff, 0x48892a0a, 0xaacb1d24,
539
+ 0x00100000, 0x01000000, 0x00100000, 0x00ffffff, 0x00010000, 0x01000000,
540
+ 0x00010000, 0x00ffffff, 0x00000001, 0x01000000, 0x00000001, 0x00ffffff,
541
+ 0x00000000, 0x02000000, 0x00000000, 0x01ffffff, 0x00000000, 0x01010000,
542
+ 0x00000000, 0x0100ffff, 0x00000000, 0x01008000, 0x00000000, 0x01007fff,
543
+ 0x00000000, 0x01000001, 0x00000000, 0x01000000, 0x00000000, 0x00ffffff,
544
+ 0x00000000, 0x00fffffe, 0x00000000, 0x00fffffd, 0x00000000, 0x00ff8000,
545
+ 0x00000000, 0x00ff7fff, 0x00000000, 0x00ff0000, 0x00000000, 0x00feffff,
546
+ 0x00000000, 0x00000000, 0xffffffff, 0xffffffff, 0xffffffff, 0xaacb1d24,
547
+ 0xffffffff, 0x49892a0a, 0xffffffff, 0x01000000, 0xffffffff, 0x00ffffff,
548
+ 0xffff0000, 0x01000000, 0xffff0000, 0x00ffffff, 0xfff00000, 0x01000000,
549
+ 0xfff00000, 0x00ffffff, 0xa9cb1d24, 0x49892a0a, 0x80000000, 0x01000000,
550
+ 0x80000000, 0x01000000, 0x48892a0a, 0xaacb1d25, 0x00100000, 0x01000001,
551
+ 0x00100000, 0x01000000, 0x00010000, 0x01000001, 0x00010000, 0x01000000,
552
+ 0x00000001, 0x01000001, 0x00000001, 0x01000000, 0x00000000, 0x02000001,
553
+ 0x00000000, 0x02000000, 0x00000000, 0x01010001, 0x00000000, 0x01010000,
554
+ 0x00000000, 0x01008001, 0x00000000, 0x01008000, 0x00000000, 0x01000002,
555
+ 0x00000000, 0x01000001, 0x00000000, 0x01000000, 0x00000000, 0x00ffffff,
556
+ 0x00000000, 0x00fffffe, 0x00000000, 0x00ff8001, 0x00000000, 0x00ff8000,
557
+ 0x00000000, 0x00ff0001, 0x00000000, 0x00ff0000, 0x00000000, 0x00000001,
558
+ 0x00000000, 0x00000000, 0xffffffff, 0xaacb1d25, 0xffffffff, 0x49892a0b,
559
+ 0xffffffff, 0x01000001, 0xffffffff, 0x01000000, 0xffff0000, 0x01000001,
560
+ 0xffff0000, 0x01000000, 0xfff00000, 0x01000001, 0xfff00000, 0x01000000,
561
+ 0xa9cb1d24, 0x49892a0b, 0x80000000, 0x01000001, 0x80000000, 0x5634e2db,
562
+ 0x48892a0b, 0x00000000, 0x00100000, 0x5634e2dc, 0x00100000, 0x5634e2db,
563
+ 0x00010000, 0x5634e2dc, 0x00010000, 0x5634e2db, 0x00000001, 0x5634e2dc,
564
+ 0x00000001, 0x5634e2db, 0x00000000, 0x5734e2dc, 0x00000000, 0x5734e2db,
565
+ 0x00000000, 0x5635e2dc, 0x00000000, 0x5635e2db, 0x00000000, 0x563562dc,
566
+ 0x00000000, 0x563562db, 0x00000000, 0x5634e2dd, 0x00000000, 0x5634e2dc,
567
+ 0x00000000, 0x5634e2db, 0x00000000, 0x5634e2da, 0x00000000, 0x5634e2d9,
568
+ 0x00000000, 0x563462dc, 0x00000000, 0x563462db, 0x00000000, 0x5633e2dc,
569
+ 0x00000000, 0x5633e2db, 0x00000000, 0x5534e2dc, 0x00000000, 0x5534e2db,
570
+ 0x00000000, 0x00000000, 0xffffffff, 0x9ebe0ce6, 0xffffffff, 0x5634e2dc,
571
+ 0xffffffff, 0x5634e2db, 0xffff0000, 0x5634e2dc, 0xffff0000, 0x5634e2db,
572
+ 0xfff00000, 0x5634e2dc, 0xfff00000, 0x5634e2db, 0xa9cb1d24, 0x9ebe0ce6,
573
+ 0x80000000, 0x5634e2dc, 0x80000000, 0xb776d5f5, 0x48892a0b, 0x6141f31a,
574
+ 0x00100000, 0xb776d5f6, 0x00100000, 0xb776d5f5, 0x00010000, 0xb776d5f6,
575
+ 0x00010000, 0xb776d5f5, 0x00000001, 0xb776d5f6, 0x00000001, 0xb776d5f5,
576
+ 0x00000000, 0xb876d5f6, 0x00000000, 0xb876d5f5, 0x00000000, 0xb777d5f6,
577
+ 0x00000000, 0xb777d5f5, 0x00000000, 0xb77755f6, 0x00000000, 0xb77755f5,
578
+ 0x00000000, 0xb776d5f7, 0x00000000, 0xb776d5f6, 0x00000000, 0xb776d5f5,
579
+ 0x00000000, 0xb776d5f4, 0x00000000, 0xb776d5f3, 0x00000000, 0xb77655f6,
580
+ 0x00000000, 0xb77655f5, 0x00000000, 0xb775d5f6, 0x00000000, 0xb775d5f5,
581
+ 0x00000000, 0xb676d5f6, 0x00000000, 0xb676d5f5, 0x00000000, 0x6141f31a,
582
+ 0x00000000, 0x00000000, 0xffffffff, 0xb776d5f6, 0xffffffff, 0xb776d5f5,
583
+ 0xffff0000, 0xb776d5f6, 0xffff0000, 0xb776d5f5, 0xfff00000, 0xb776d5f6,
584
+ 0xfff00000, 0xb776d5f5, 0xa9cb1d25, 0x00000000, 0x80000000, 0xb776d5f6,
585
+ 0x80000000, 0xffffffff, 0x48892a0b, 0xa9cb1d24, 0x00100001, 0x00000000,
586
+ 0x00100000, 0xffffffff, 0x00010001, 0x00000000, 0x00010000, 0xffffffff,
587
+ 0x00000002, 0x00000000, 0x00000001, 0xffffffff, 0x00000001, 0x01000000,
588
+ 0x00000001, 0x00ffffff, 0x00000001, 0x00010000, 0x00000001, 0x0000ffff,
589
+ 0x00000001, 0x00008000, 0x00000001, 0x00007fff, 0x00000001, 0x00000001,
590
+ 0x00000001, 0x00000000, 0x00000000, 0xffffffff, 0x00000000, 0xfffffffe,
591
+ 0x00000000, 0xfffffffd, 0x00000000, 0xffff8000, 0x00000000, 0xffff7fff,
592
+ 0x00000000, 0xffff0000, 0x00000000, 0xfffeffff, 0x00000000, 0xff000000,
593
+ 0x00000000, 0xfeffffff, 0x00000000, 0xa9cb1d24, 0x00000000, 0x48892a0a,
594
+ 0x00000000, 0x00000000, 0xffffffff, 0xffffffff, 0xffff0001, 0x00000000,
595
+ 0xffff0000, 0xffffffff, 0xfff00001, 0x00000000, 0xfff00000, 0xffffffff,
596
+ 0xa9cb1d25, 0x48892a0a, 0x80000001, 0x00000000, 0x80000001, 0x00000000,
597
+ 0x48892a0b, 0xa9cb1d25, 0x00100001, 0x00000001, 0x00100001, 0x00000000,
598
+ 0x00010001, 0x00000001, 0x00010001, 0x00000000, 0x00000002, 0x00000001,
599
+ 0x00000002, 0x00000000, 0x00000001, 0x01000001, 0x00000001, 0x01000000,
600
+ 0x00000001, 0x00010001, 0x00000001, 0x00010000, 0x00000001, 0x00008001,
601
+ 0x00000001, 0x00008000, 0x00000001, 0x00000002, 0x00000001, 0x00000001,
602
+ 0x00000001, 0x00000000, 0x00000000, 0xffffffff, 0x00000000, 0xfffffffe,
603
+ 0x00000000, 0xffff8001, 0x00000000, 0xffff8000, 0x00000000, 0xffff0001,
604
+ 0x00000000, 0xffff0000, 0x00000000, 0xff000001, 0x00000000, 0xff000000,
605
+ 0x00000000, 0xa9cb1d25, 0x00000000, 0x48892a0b, 0x00000000, 0x00000001,
606
+ 0x00000000, 0x00000000, 0xffff0001, 0x00000001, 0xffff0001, 0x00000000,
607
+ 0xfff00001, 0x00000001, 0xfff00001, 0x00000000, 0xa9cb1d25, 0x48892a0b,
608
+ 0x80000001, 0x00000001, 0x8000ffff, 0xffffffff, 0x488a2a0a, 0xa9cb1d24,
609
+ 0x00110000, 0x00000000, 0x0010ffff, 0xffffffff, 0x00020000, 0x00000000,
610
+ 0x0001ffff, 0xffffffff, 0x00010001, 0x00000000, 0x00010000, 0xffffffff,
611
+ 0x00010000, 0x01000000, 0x00010000, 0x00ffffff, 0x00010000, 0x00010000,
612
+ 0x00010000, 0x0000ffff, 0x00010000, 0x00008000, 0x00010000, 0x00007fff,
613
+ 0x00010000, 0x00000001, 0x00010000, 0x00000000, 0x0000ffff, 0xffffffff,
614
+ 0x0000ffff, 0xfffffffe, 0x0000ffff, 0xfffffffd, 0x0000ffff, 0xffff8000,
615
+ 0x0000ffff, 0xffff7fff, 0x0000ffff, 0xffff0000, 0x0000ffff, 0xfffeffff,
616
+ 0x0000ffff, 0xff000000, 0x0000ffff, 0xfeffffff, 0x0000ffff, 0xa9cb1d24,
617
+ 0x0000ffff, 0x48892a0a, 0x0000ffff, 0x00000000, 0x0000fffe, 0xffffffff,
618
+ 0x00000000, 0x00000000, 0xffffffff, 0xffffffff, 0xfff10000, 0x00000000,
619
+ 0xfff0ffff, 0xffffffff, 0xa9cc1d24, 0x48892a0a, 0x80010000, 0x00000000,
620
+ 0x80010000, 0x00000000, 0x488a2a0a, 0xa9cb1d25, 0x00110000, 0x00000001,
621
+ 0x00110000, 0x00000000, 0x00020000, 0x00000001, 0x00020000, 0x00000000,
622
+ 0x00010001, 0x00000001, 0x00010001, 0x00000000, 0x00010000, 0x01000001,
623
+ 0x00010000, 0x01000000, 0x00010000, 0x00010001, 0x00010000, 0x00010000,
624
+ 0x00010000, 0x00008001, 0x00010000, 0x00008000, 0x00010000, 0x00000002,
625
+ 0x00010000, 0x00000001, 0x00010000, 0x00000000, 0x0000ffff, 0xffffffff,
626
+ 0x0000ffff, 0xfffffffe, 0x0000ffff, 0xffff8001, 0x0000ffff, 0xffff8000,
627
+ 0x0000ffff, 0xffff0001, 0x0000ffff, 0xffff0000, 0x0000ffff, 0xff000001,
628
+ 0x0000ffff, 0xff000000, 0x0000ffff, 0xa9cb1d25, 0x0000ffff, 0x48892a0b,
629
+ 0x0000ffff, 0x00000001, 0x0000ffff, 0x00000000, 0x00000000, 0x00000001,
630
+ 0x00000000, 0x00000000, 0xfff10000, 0x00000001, 0xfff10000, 0x00000000,
631
+ 0xa9cc1d24, 0x48892a0b, 0x80010000, 0x00000001, 0x800fffff, 0xffffffff,
632
+ 0x48992a0a, 0xa9cb1d24, 0x00200000, 0x00000000, 0x001fffff, 0xffffffff,
633
+ 0x00110000, 0x00000000, 0x0010ffff, 0xffffffff, 0x00100001, 0x00000000,
634
+ 0x00100000, 0xffffffff, 0x00100000, 0x01000000, 0x00100000, 0x00ffffff,
635
+ 0x00100000, 0x00010000, 0x00100000, 0x0000ffff, 0x00100000, 0x00008000,
636
+ 0x00100000, 0x00007fff, 0x00100000, 0x00000001, 0x00100000, 0x00000000,
637
+ 0x000fffff, 0xffffffff, 0x000fffff, 0xfffffffe, 0x000fffff, 0xfffffffd,
638
+ 0x000fffff, 0xffff8000, 0x000fffff, 0xffff7fff, 0x000fffff, 0xffff0000,
639
+ 0x000fffff, 0xfffeffff, 0x000fffff, 0xff000000, 0x000fffff, 0xfeffffff,
640
+ 0x000fffff, 0xa9cb1d24, 0x000fffff, 0x48892a0a, 0x000fffff, 0x00000000,
641
+ 0x000ffffe, 0xffffffff, 0x000f0000, 0x00000000, 0x000effff, 0xffffffff,
642
+ 0x00000000, 0x00000000, 0xffffffff, 0xffffffff, 0xa9db1d24, 0x48892a0a,
643
+ 0x80100000, 0x00000000, 0x80100000, 0x00000000, 0x48992a0a, 0xa9cb1d25,
644
+ 0x00200000, 0x00000001, 0x00200000, 0x00000000, 0x00110000, 0x00000001,
645
+ 0x00110000, 0x00000000, 0x00100001, 0x00000001, 0x00100001, 0x00000000,
646
+ 0x00100000, 0x01000001, 0x00100000, 0x01000000, 0x00100000, 0x00010001,
647
+ 0x00100000, 0x00010000, 0x00100000, 0x00008001, 0x00100000, 0x00008000,
648
+ 0x00100000, 0x00000002, 0x00100000, 0x00000001, 0x00100000, 0x00000000,
649
+ 0x000fffff, 0xffffffff, 0x000fffff, 0xfffffffe, 0x000fffff, 0xffff8001,
650
+ 0x000fffff, 0xffff8000, 0x000fffff, 0xffff0001, 0x000fffff, 0xffff0000,
651
+ 0x000fffff, 0xff000001, 0x000fffff, 0xff000000, 0x000fffff, 0xa9cb1d25,
652
+ 0x000fffff, 0x48892a0b, 0x000fffff, 0x00000001, 0x000fffff, 0x00000000,
653
+ 0x000f0000, 0x00000001, 0x000f0000, 0x00000000, 0x00000000, 0x00000001,
654
+ 0x00000000, 0x00000000, 0xa9db1d24, 0x48892a0b, 0x80100000, 0x00000001,
655
+ 0xd634e2db, 0xb776d5f5, 0x9ebe0ce6, 0x6141f31a, 0x5644e2db, 0xb776d5f6,
656
+ 0x5644e2db, 0xb776d5f5, 0x5635e2db, 0xb776d5f6, 0x5635e2db, 0xb776d5f5,
657
+ 0x5634e2dc, 0xb776d5f6, 0x5634e2dc, 0xb776d5f5, 0x5634e2db, 0xb876d5f6,
658
+ 0x5634e2db, 0xb876d5f5, 0x5634e2db, 0xb777d5f6, 0x5634e2db, 0xb777d5f5,
659
+ 0x5634e2db, 0xb77755f6, 0x5634e2db, 0xb77755f5, 0x5634e2db, 0xb776d5f7,
660
+ 0x5634e2db, 0xb776d5f6, 0x5634e2db, 0xb776d5f5, 0x5634e2db, 0xb776d5f4,
661
+ 0x5634e2db, 0xb776d5f3, 0x5634e2db, 0xb77655f6, 0x5634e2db, 0xb77655f5,
662
+ 0x5634e2db, 0xb775d5f6, 0x5634e2db, 0xb775d5f5, 0x5634e2db, 0xb676d5f6,
663
+ 0x5634e2db, 0xb676d5f5, 0x5634e2db, 0x6141f31a, 0x5634e2db, 0x00000000,
664
+ 0x5634e2da, 0xb776d5f6, 0x5634e2da, 0xb776d5f5, 0x5633e2db, 0xb776d5f6,
665
+ 0x5633e2db, 0xb776d5f5, 0x5624e2db, 0xb776d5f6, 0x5624e2db, 0xb776d5f5,
666
+ 0x00000000, 0x00000000, 0xd634e2db, 0xb776d5f6, 0xffffffff, 0xffffffff,
667
+ 0xc8892a0a, 0xa9cb1d24, 0x80100000, 0x00000000, 0x800fffff, 0xffffffff,
668
+ 0x80010000, 0x00000000, 0x8000ffff, 0xffffffff, 0x80000001, 0x00000000,
669
+ 0x80000000, 0xffffffff, 0x80000000, 0x01000000, 0x80000000, 0x00ffffff,
670
+ 0x80000000, 0x00010000, 0x80000000, 0x0000ffff, 0x80000000, 0x00008000,
671
+ 0x80000000, 0x00007fff, 0x80000000, 0x00000001, 0x80000000, 0x00000000,
672
+ 0x7fffffff, 0xffffffff, 0x7fffffff, 0xfffffffe, 0x7fffffff, 0xfffffffd,
673
+ 0x7fffffff, 0xffff8000, 0x7fffffff, 0xffff7fff, 0x7fffffff, 0xffff0000,
674
+ 0x7fffffff, 0xfffeffff, 0x7fffffff, 0xff000000, 0x7fffffff, 0xfeffffff,
675
+ 0x7fffffff, 0xa9cb1d24, 0x7fffffff, 0x48892a0a, 0x7fffffff, 0x00000000,
676
+ 0x7ffffffe, 0xffffffff, 0x7fff0000, 0x00000000, 0x7ffeffff, 0xffffffff,
677
+ 0x7ff00000, 0x00000000, 0x7fefffff, 0xffffffff, 0x29cb1d24, 0x48892a0a,
678
+ 0x00000000, 0x00000000
679
+ ];
680
+ toInt32s(TEST_SUB_BITS);
681
+
682
+ var TEST_MUL_BITS = [
683
+ 0x80000000, 0x00000000, 0x80000000, 0x00000000, 0x1ad92a0a, 0xa9cb1d25,
684
+ 0x00000000, 0x00000000, 0xd2500000, 0x00000000, 0x00100000, 0x00000000,
685
+ 0x80000000, 0x00000000, 0x65ae2a0a, 0xa9cb1d25, 0x00110000, 0x00000001,
686
+ 0x00100000, 0x00000000, 0x00000000, 0x00000000, 0x1d250000, 0x00000000,
687
+ 0x00010000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0x00000000,
688
+ 0x80000000, 0x00000000, 0xf254472f, 0xa9cb1d25, 0x00100001, 0x00000001,
689
+ 0x00100000, 0x00000000, 0x00010001, 0x00000001, 0x00010000, 0x00000000,
690
+ 0x00000000, 0x00000000, 0xa9cb1d25, 0x00000000, 0x00000001, 0x00000000,
691
+ 0x00000000, 0x00000000, 0x00000001, 0x00000000, 0x00000000, 0x00000000,
692
+ 0x00000001, 0x00000000, 0x80000000, 0x00000000, 0x5332f527, 0xcecb1d25,
693
+ 0x00100000, 0x01000001, 0x00100000, 0x00000000, 0x00010000, 0x01000001,
694
+ 0x00010000, 0x00000000, 0x01000001, 0x01000001, 0x01000001, 0x00000000,
695
+ 0x00000000, 0x00000000, 0x0aa9cb1d, 0x25000000, 0x00000000, 0x01000000,
696
+ 0x00000000, 0x00000000, 0x00000000, 0x01000000, 0x00000000, 0x00000000,
697
+ 0x01000000, 0x01000000, 0x01000000, 0x00000000, 0x00010000, 0x01000000,
698
+ 0x80000000, 0x00000000, 0x7293d3d5, 0xc6f01d25, 0x00100000, 0x00010001,
699
+ 0x00100000, 0x00000000, 0x00010000, 0x00010001, 0x00010000, 0x00000000,
700
+ 0x00010001, 0x00010001, 0x00010001, 0x00000000, 0x00000100, 0x01010001,
701
+ 0x00000100, 0x01000000, 0x00000000, 0x00000000, 0x2a0aa9cb, 0x1d250000,
702
+ 0x00000000, 0x00010000, 0x00000000, 0x00000000, 0x00000000, 0x00010000,
703
+ 0x00000000, 0x00000000, 0x00010000, 0x00010000, 0x00010000, 0x00000000,
704
+ 0x00000100, 0x00010000, 0x00000100, 0x00000000, 0x00000001, 0x00010000,
705
+ 0x80000000, 0x00000000, 0xdd8e7ef0, 0x385d9d25, 0x00100000, 0x00008001,
706
+ 0x00100000, 0x00000000, 0x80010000, 0x00008001, 0x80010000, 0x00000000,
707
+ 0x00008001, 0x00008001, 0x00008001, 0x00000000, 0x00000080, 0x01008001,
708
+ 0x00000080, 0x01000000, 0x00000000, 0x80018001, 0x00000000, 0x80010000,
709
+ 0x00000000, 0x00000000, 0x950554e5, 0x8e928000, 0x00000000, 0x00008000,
710
+ 0x00000000, 0x00000000, 0x80000000, 0x00008000, 0x80000000, 0x00000000,
711
+ 0x00008000, 0x00008000, 0x00008000, 0x00000000, 0x00000080, 0x00008000,
712
+ 0x00000080, 0x00000000, 0x00000000, 0x80008000, 0x00000000, 0x80000000,
713
+ 0x00000000, 0x40008000, 0x00000000, 0x00000000, 0x91125415, 0x53963a4a,
714
+ 0x00200000, 0x00000002, 0x00200000, 0x00000000, 0x00020000, 0x00000002,
715
+ 0x00020000, 0x00000000, 0x00000002, 0x00000002, 0x00000002, 0x00000000,
716
+ 0x00000000, 0x02000002, 0x00000000, 0x02000000, 0x00000000, 0x00020002,
717
+ 0x00000000, 0x00020000, 0x00000000, 0x00010002, 0x00000000, 0x00010000,
718
+ 0x80000000, 0x00000000, 0x48892a0a, 0xa9cb1d25, 0x00100000, 0x00000001,
719
+ 0x00100000, 0x00000000, 0x00010000, 0x00000001, 0x00010000, 0x00000000,
720
+ 0x00000001, 0x00000001, 0x00000001, 0x00000000, 0x00000000, 0x01000001,
721
+ 0x00000000, 0x01000000, 0x00000000, 0x00010001, 0x00000000, 0x00010000,
722
+ 0x00000000, 0x00008001, 0x00000000, 0x00008000, 0x00000000, 0x00000002,
723
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
724
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
725
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
726
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
727
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
728
+ 0x00000000, 0x00000000, 0x80000000, 0x00000000, 0xb776d5f5, 0x5634e2db,
729
+ 0xffefffff, 0xffffffff, 0xfff00000, 0x00000000, 0xfffeffff, 0xffffffff,
730
+ 0xffff0000, 0x00000000, 0xfffffffe, 0xffffffff, 0xffffffff, 0x00000000,
731
+ 0xffffffff, 0xfeffffff, 0xffffffff, 0xff000000, 0xffffffff, 0xfffeffff,
732
+ 0xffffffff, 0xffff0000, 0xffffffff, 0xffff7fff, 0xffffffff, 0xffff8000,
733
+ 0xffffffff, 0xfffffffe, 0xffffffff, 0xffffffff, 0x00000000, 0x00000000,
734
+ 0x00000000, 0x00000000, 0x6eedabea, 0xac69c5b6, 0xffdfffff, 0xfffffffe,
735
+ 0xffe00000, 0x00000000, 0xfffdffff, 0xfffffffe, 0xfffe0000, 0x00000000,
736
+ 0xfffffffd, 0xfffffffe, 0xfffffffe, 0x00000000, 0xffffffff, 0xfdfffffe,
737
+ 0xffffffff, 0xfe000000, 0xffffffff, 0xfffdfffe, 0xffffffff, 0xfffe0000,
738
+ 0xffffffff, 0xfffefffe, 0xffffffff, 0xffff0000, 0xffffffff, 0xfffffffc,
739
+ 0xffffffff, 0xfffffffe, 0x00000000, 0x00000000, 0x00000000, 0x00000002,
740
+ 0x80000000, 0x00000000, 0xb383d525, 0x1b389d25, 0x000fffff, 0xffff8001,
741
+ 0x00100000, 0x00000000, 0x8000ffff, 0xffff8001, 0x80010000, 0x00000000,
742
+ 0xffff8000, 0xffff8001, 0xffff8001, 0x00000000, 0xffffff80, 0x00ff8001,
743
+ 0xffffff80, 0x01000000, 0xffffffff, 0x80008001, 0xffffffff, 0x80010000,
744
+ 0xffffffff, 0xc0000001, 0xffffffff, 0xc0008000, 0xffffffff, 0xffff0002,
745
+ 0xffffffff, 0xffff8001, 0x00000000, 0x00000000, 0x00000000, 0x00007fff,
746
+ 0x00000000, 0x0000fffe, 0x00000000, 0x00000000, 0x6afaab1a, 0x716d8000,
747
+ 0xffffffff, 0xffff8000, 0x00000000, 0x00000000, 0x7fffffff, 0xffff8000,
748
+ 0x80000000, 0x00000000, 0xffff7fff, 0xffff8000, 0xffff8000, 0x00000000,
749
+ 0xffffff7f, 0xffff8000, 0xffffff80, 0x00000000, 0xffffffff, 0x7fff8000,
750
+ 0xffffffff, 0x80000000, 0xffffffff, 0xbfff8000, 0xffffffff, 0xc0000000,
751
+ 0xffffffff, 0xffff0000, 0xffffffff, 0xffff8000, 0x00000000, 0x00000000,
752
+ 0x00000000, 0x00008000, 0x00000000, 0x00010000, 0x00000000, 0x3fff8000,
753
+ 0x80000000, 0x00000000, 0x1e7e803f, 0x8ca61d25, 0x000fffff, 0xffff0001,
754
+ 0x00100000, 0x00000000, 0x0000ffff, 0xffff0001, 0x00010000, 0x00000000,
755
+ 0xffff0000, 0xffff0001, 0xffff0001, 0x00000000, 0xffffff00, 0x00ff0001,
756
+ 0xffffff00, 0x01000000, 0xffffffff, 0x00000001, 0xffffffff, 0x00010000,
757
+ 0xffffffff, 0x7fff8001, 0xffffffff, 0x80008000, 0xffffffff, 0xfffe0002,
758
+ 0xffffffff, 0xffff0001, 0x00000000, 0x00000000, 0x00000000, 0x0000ffff,
759
+ 0x00000000, 0x0001fffe, 0x00000000, 0x7ffe8001, 0x00000000, 0x7fff8000,
760
+ 0x00000000, 0x00000000, 0xd5f55634, 0xe2db0000, 0xffffffff, 0xffff0000,
761
+ 0x00000000, 0x00000000, 0xffffffff, 0xffff0000, 0x00000000, 0x00000000,
762
+ 0xfffeffff, 0xffff0000, 0xffff0000, 0x00000000, 0xfffffeff, 0xffff0000,
763
+ 0xffffff00, 0x00000000, 0xfffffffe, 0xffff0000, 0xffffffff, 0x00000000,
764
+ 0xffffffff, 0x7fff0000, 0xffffffff, 0x80000000, 0xffffffff, 0xfffe0000,
765
+ 0xffffffff, 0xffff0000, 0x00000000, 0x00000000, 0x00000000, 0x00010000,
766
+ 0x00000000, 0x00020000, 0x00000000, 0x7fff0000, 0x00000000, 0x80000000,
767
+ 0x00000000, 0xffff0000, 0x80000000, 0x00000000, 0x3ddf5eed, 0x84cb1d25,
768
+ 0x000fffff, 0xff000001, 0x00100000, 0x00000000, 0x0000ffff, 0xff000001,
769
+ 0x00010000, 0x00000000, 0xff000000, 0xff000001, 0xff000001, 0x00000000,
770
+ 0xffff0000, 0x00000001, 0xffff0000, 0x01000000, 0xfffffeff, 0xff010001,
771
+ 0xffffff00, 0x00010000, 0xffffff7f, 0xff008001, 0xffffff80, 0x00008000,
772
+ 0xffffffff, 0xfe000002, 0xffffffff, 0xff000001, 0x00000000, 0x00000000,
773
+ 0x00000000, 0x00ffffff, 0x00000000, 0x01fffffe, 0x0000007f, 0xfeff8001,
774
+ 0x0000007f, 0xffff8000, 0x000000ff, 0xfeff0001, 0x000000ff, 0xffff0000,
775
+ 0x00000000, 0x00000000, 0xf55634e2, 0xdb000000, 0xffffffff, 0xff000000,
776
+ 0x00000000, 0x00000000, 0xffffffff, 0xff000000, 0x00000000, 0x00000000,
777
+ 0xfeffffff, 0xff000000, 0xff000000, 0x00000000, 0xfffeffff, 0xff000000,
778
+ 0xffff0000, 0x00000000, 0xfffffeff, 0xff000000, 0xffffff00, 0x00000000,
779
+ 0xffffff7f, 0xff000000, 0xffffff80, 0x00000000, 0xffffffff, 0xfe000000,
780
+ 0xffffffff, 0xff000000, 0x00000000, 0x00000000, 0x00000000, 0x01000000,
781
+ 0x00000000, 0x02000000, 0x0000007f, 0xff000000, 0x00000080, 0x00000000,
782
+ 0x000000ff, 0xff000000, 0x00000100, 0x00000000, 0x0000ffff, 0xff000000,
783
+ 0x80000000, 0x00000000, 0xbc56e5ef, 0x15ff6759, 0xd24fffff, 0xa9cb1d25,
784
+ 0xd2500000, 0x00000000, 0x1d24ffff, 0xa9cb1d25, 0x1d250000, 0x00000000,
785
+ 0xa9cb1d24, 0xa9cb1d25, 0xa9cb1d25, 0x00000000, 0xffa9cb1c, 0xcecb1d25,
786
+ 0xffa9cb1d, 0x25000000, 0xffffa9ca, 0xc6f01d25, 0xffffa9cb, 0x1d250000,
787
+ 0xffffd4e5, 0x385d9d25, 0xffffd4e5, 0x8e928000, 0xffffffff, 0x53963a4a,
788
+ 0xffffffff, 0xa9cb1d25, 0x00000000, 0x00000000, 0x00000000, 0x5634e2db,
789
+ 0x00000000, 0xac69c5b6, 0x00002b1a, 0x1b389d25, 0x00002b1a, 0x716d8000,
790
+ 0x00005634, 0x8ca61d25, 0x00005634, 0xe2db0000, 0x005634e2, 0x84cb1d25,
791
+ 0x005634e2, 0xdb000000, 0x80000000, 0x00000000, 0x74756f10, 0x9f4f5297,
792
+ 0xa0afffff, 0x48892a0b, 0xa0b00000, 0x00000000, 0x2a0affff, 0x48892a0b,
793
+ 0x2a0b0000, 0x00000000, 0x48892a0a, 0x48892a0b, 0x48892a0b, 0x00000000,
794
+ 0xff488929, 0x53892a0b, 0xff48892a, 0x0b000000, 0xffff4888, 0x72942a0b,
795
+ 0xffff4889, 0x2a0b0000, 0xffffa443, 0xdd8eaa0b, 0xffffa444, 0x95058000,
796
+ 0xfffffffe, 0x91125416, 0xffffffff, 0x48892a0b, 0x00000000, 0x00000000,
797
+ 0x00000000, 0xb776d5f5, 0x00000001, 0x6eedabea, 0x00005bba, 0xb383aa0b,
798
+ 0x00005bbb, 0x6afa8000, 0x0000b776, 0x1e7e2a0b, 0x0000b776, 0xd5f50000,
799
+ 0x00b776d5, 0x3d892a0b, 0x00b776d5, 0xf5000000, 0x3dc7d297, 0x9f4f5297,
800
+ 0x80000000, 0x00000000, 0x9ebe0ce5, 0xa9cb1d25, 0x000fffff, 0x00000001,
801
+ 0x00100000, 0x00000000, 0x0000ffff, 0x00000001, 0x00010000, 0x00000000,
802
+ 0x00000000, 0x00000001, 0x00000001, 0x00000000, 0xfeffffff, 0x01000001,
803
+ 0xff000000, 0x01000000, 0xfffeffff, 0x00010001, 0xffff0000, 0x00010000,
804
+ 0xffff7fff, 0x00008001, 0xffff8000, 0x00008000, 0xfffffffe, 0x00000002,
805
+ 0xffffffff, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0xffffffff,
806
+ 0x00000001, 0xfffffffe, 0x00007ffe, 0xffff8001, 0x00007fff, 0xffff8000,
807
+ 0x0000fffe, 0xffff0001, 0x0000ffff, 0xffff0000, 0x00fffffe, 0xff000001,
808
+ 0x00ffffff, 0xff000000, 0x5634e2da, 0xa9cb1d25, 0xb776d5f4, 0x48892a0b,
809
+ 0x00000000, 0x00000000, 0x5634e2db, 0x00000000, 0xffffffff, 0x00000000,
810
+ 0x00000000, 0x00000000, 0xffffffff, 0x00000000, 0x00000000, 0x00000000,
811
+ 0xffffffff, 0x00000000, 0x00000000, 0x00000000, 0xfeffffff, 0x00000000,
812
+ 0xff000000, 0x00000000, 0xfffeffff, 0x00000000, 0xffff0000, 0x00000000,
813
+ 0xffff7fff, 0x00000000, 0xffff8000, 0x00000000, 0xfffffffe, 0x00000000,
814
+ 0xffffffff, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000000,
815
+ 0x00000002, 0x00000000, 0x00007fff, 0x00000000, 0x00008000, 0x00000000,
816
+ 0x0000ffff, 0x00000000, 0x00010000, 0x00000000, 0x00ffffff, 0x00000000,
817
+ 0x01000000, 0x00000000, 0x5634e2db, 0x00000000, 0xb776d5f5, 0x00000000,
818
+ 0xffffffff, 0x00000000, 0x80000000, 0x00000000, 0x2b642a0a, 0xa9cb1d25,
819
+ 0x000f0000, 0x00000001, 0x00100000, 0x00000000, 0x00000000, 0x00000001,
820
+ 0x00010000, 0x00000000, 0xffff0001, 0x00000001, 0x00000001, 0x00000000,
821
+ 0xffff0000, 0x01000001, 0x00000000, 0x01000000, 0xffff0000, 0x00010001,
822
+ 0x00000000, 0x00010000, 0x7fff0000, 0x00008001, 0x80000000, 0x00008000,
823
+ 0xfffe0000, 0x00000002, 0xffff0000, 0x00000001, 0x00000000, 0x00000000,
824
+ 0x0000ffff, 0xffffffff, 0x0001ffff, 0xfffffffe, 0x7ffeffff, 0xffff8001,
825
+ 0x7fffffff, 0xffff8000, 0xfffeffff, 0xffff0001, 0xffffffff, 0xffff0000,
826
+ 0xfffeffff, 0xff000001, 0xffffffff, 0xff000000, 0xe2daffff, 0xa9cb1d25,
827
+ 0xd5f4ffff, 0x48892a0b, 0xfffeffff, 0x00000001, 0xffffffff, 0x00000000,
828
+ 0x00000000, 0x00000000, 0xe2db0000, 0x00000000, 0xffff0000, 0x00000000,
829
+ 0x00000000, 0x00000000, 0xffff0000, 0x00000000, 0x00000000, 0x00000000,
830
+ 0xffff0000, 0x00000000, 0x00000000, 0x00000000, 0xffff0000, 0x00000000,
831
+ 0x00000000, 0x00000000, 0xffff0000, 0x00000000, 0x00000000, 0x00000000,
832
+ 0x7fff0000, 0x00000000, 0x80000000, 0x00000000, 0xfffe0000, 0x00000000,
833
+ 0xffff0000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0x00000000,
834
+ 0x00020000, 0x00000000, 0x7fff0000, 0x00000000, 0x80000000, 0x00000000,
835
+ 0xffff0000, 0x00000000, 0x00000000, 0x00000000, 0xffff0000, 0x00000000,
836
+ 0x00000000, 0x00000000, 0xe2db0000, 0x00000000, 0xd5f50000, 0x00000000,
837
+ 0xffff0000, 0x00000000, 0x00000000, 0x00000000, 0xffff0000, 0x00000000,
838
+ 0x80000000, 0x00000000, 0x76392a0a, 0xa9cb1d25, 0x00000000, 0x00000001,
839
+ 0x00100000, 0x00000000, 0xfff10000, 0x00000001, 0x00010000, 0x00000000,
840
+ 0xfff00001, 0x00000001, 0x00000001, 0x00000000, 0xfff00000, 0x01000001,
841
+ 0x00000000, 0x01000000, 0xfff00000, 0x00010001, 0x00000000, 0x00010000,
842
+ 0xfff00000, 0x00008001, 0x00000000, 0x00008000, 0xffe00000, 0x00000002,
843
+ 0xfff00000, 0x00000001, 0x00000000, 0x00000000, 0x000fffff, 0xffffffff,
844
+ 0x001fffff, 0xfffffffe, 0xffefffff, 0xffff8001, 0xffffffff, 0xffff8000,
845
+ 0xffefffff, 0xffff0001, 0xffffffff, 0xffff0000, 0xffefffff, 0xff000001,
846
+ 0xffffffff, 0xff000000, 0x2dafffff, 0xa9cb1d25, 0x5f4fffff, 0x48892a0b,
847
+ 0xffefffff, 0x00000001, 0xffffffff, 0x00000000, 0xffef0000, 0x00000001,
848
+ 0xffff0000, 0x00000000, 0x00000000, 0x00000000, 0x2db00000, 0x00000000,
849
+ 0xfff00000, 0x00000000, 0x00000000, 0x00000000, 0xfff00000, 0x00000000,
850
+ 0x00000000, 0x00000000, 0xfff00000, 0x00000000, 0x00000000, 0x00000000,
851
+ 0xfff00000, 0x00000000, 0x00000000, 0x00000000, 0xfff00000, 0x00000000,
852
+ 0x00000000, 0x00000000, 0xfff00000, 0x00000000, 0x00000000, 0x00000000,
853
+ 0xffe00000, 0x00000000, 0xfff00000, 0x00000000, 0x00000000, 0x00000000,
854
+ 0x00100000, 0x00000000, 0x00200000, 0x00000000, 0xfff00000, 0x00000000,
855
+ 0x00000000, 0x00000000, 0xfff00000, 0x00000000, 0x00000000, 0x00000000,
856
+ 0xfff00000, 0x00000000, 0x00000000, 0x00000000, 0x2db00000, 0x00000000,
857
+ 0x5f500000, 0x00000000, 0xfff00000, 0x00000000, 0x00000000, 0x00000000,
858
+ 0xfff00000, 0x00000000, 0x00000000, 0x00000000, 0xfff00000, 0x00000000,
859
+ 0x80000000, 0x00000000, 0x8a74d669, 0x9f4f5297, 0x4a7b1d24, 0x48892a0b,
860
+ 0xa0b00000, 0x00000000, 0xd3d61d24, 0x48892a0b, 0x2a0b0000, 0x00000000,
861
+ 0xf254472f, 0x48892a0b, 0x48892a0b, 0x00000000, 0xce13a64e, 0x53892a0b,
862
+ 0x2448892a, 0x0b000000, 0xc6ef65ad, 0x72942a0b, 0x1d244889, 0x2a0b0000,
863
+ 0x385d4168, 0xdd8eaa0b, 0x8e922444, 0x95058000, 0x53963a48, 0x91125416,
864
+ 0xa9cb1d24, 0x48892a0b, 0x00000000, 0x00000000, 0x5634e2db, 0xb776d5f5,
865
+ 0xac69c5b7, 0x6eedabea, 0x1b38f8df, 0xb383aa0b, 0x716ddbbb, 0x6afa8000,
866
+ 0x8ca6d49b, 0x1e7e2a0b, 0xe2dbb776, 0xd5f50000, 0x858293fa, 0x3d892a0b,
867
+ 0xdbb776d5, 0xf5000000, 0x53c739f0, 0x9f4f5297, 0x22ca6fa5, 0x36ad9c79,
868
+ 0x6141f319, 0x48892a0b, 0xb776d5f5, 0x00000000, 0x7fc01d24, 0x48892a0b,
869
+ 0xd5f50000, 0x00000000, 0x091b1d24, 0x48892a0b, 0x5f500000, 0x00000000,
870
+ 0x80000000, 0x00000000, 0xc8892a0a, 0xa9cb1d25, 0x80100000, 0x00000001,
871
+ 0x00100000, 0x00000000, 0x80010000, 0x00000001, 0x00010000, 0x00000000,
872
+ 0x80000001, 0x00000001, 0x00000001, 0x00000000, 0x80000000, 0x01000001,
873
+ 0x00000000, 0x01000000, 0x80000000, 0x00010001, 0x00000000, 0x00010000,
874
+ 0x80000000, 0x00008001, 0x00000000, 0x00008000, 0x00000000, 0x00000002,
875
+ 0x80000000, 0x00000001, 0x00000000, 0x00000000, 0x7fffffff, 0xffffffff,
876
+ 0xffffffff, 0xfffffffe, 0x7fffffff, 0xffff8001, 0xffffffff, 0xffff8000,
877
+ 0x7fffffff, 0xffff0001, 0xffffffff, 0xffff0000, 0x7fffffff, 0xff000001,
878
+ 0xffffffff, 0xff000000, 0x7fffffff, 0xa9cb1d25, 0x7fffffff, 0x48892a0b,
879
+ 0x7fffffff, 0x00000001, 0xffffffff, 0x00000000, 0x7fff0000, 0x00000001,
880
+ 0xffff0000, 0x00000000, 0x7ff00000, 0x00000001, 0xfff00000, 0x00000000,
881
+ 0x29cb1d24, 0x48892a0b
882
+ ];
883
+ toInt32s(TEST_MUL_BITS);
884
+
885
+ var TEST_DIV_BITS = [
886
+ 0x00000000, 0x00000001, 0x00000000, 0x00000001, 0x00000000, 0x000007ff,
887
+ 0x00000000, 0x00000800, 0x00000000, 0x00007fff, 0x00000000, 0x00008000,
888
+ 0x00000000, 0x7fffffff, 0x00000000, 0x80000000, 0x0000007f, 0xffff8000,
889
+ 0x00000080, 0x00000000, 0x00007fff, 0x80007fff, 0x00008000, 0x00000000,
890
+ 0x0000fffe, 0x0003fff8, 0x00010000, 0x00000000, 0x40000000, 0x00000000,
891
+ 0x80000000, 0x00000000, 0x80000000, 0x00000000, 0xc0000000, 0x00000000,
892
+ 0xfffefffd, 0xfffbfff8, 0xffff0000, 0x00000000, 0xffff7fff, 0x7fff8000,
893
+ 0xffff8000, 0x00000000, 0xffffff7f, 0xffff8000, 0xffffff80, 0x00000000,
894
+ 0xfffffffe, 0x83e3cc1a, 0xffffffff, 0x4d64985a, 0xffffffff, 0x80000000,
895
+ 0xffffffff, 0x80000000, 0xffffffff, 0xffff8000, 0xffffffff, 0xffff8000,
896
+ 0xffffffff, 0xfffff800, 0xffffffff, 0xfffff800, 0xffffffff, 0xffffffff,
897
+ 0xffffffff, 0xffffffff, 0x00000000, 0x00000000, 0x00000000, 0x00000001,
898
+ 0x00000000, 0x00000488, 0x00000000, 0x00000488, 0x00000000, 0x00004889,
899
+ 0x00000000, 0x00004889, 0x00000000, 0x48892a0a, 0x00000000, 0x48892a0a,
900
+ 0x00000048, 0x8929c220, 0x00000048, 0x892a0aa9, 0x00004888, 0xe181c849,
901
+ 0x00004889, 0x2a0aa9cb, 0x00009111, 0x31f2efb0, 0x00009112, 0x54155396,
902
+ 0x24449505, 0x54e58e92, 0x48892a0a, 0xa9cb1d25, 0xb776d5f5, 0x5634e2db,
903
+ 0xdbbb6afa, 0xab1a716e, 0xffff6eec, 0x89c3bff2, 0xffff6eed, 0xabeaac6a,
904
+ 0xffffb776, 0x8d6be3a1, 0xffffb776, 0xd5f55635, 0xffffffb7, 0x76d5acce,
905
+ 0xffffffb7, 0x76d5f557, 0xffffffff, 0x2898cfc6, 0xffffffff, 0x9ac930b4,
906
+ 0xffffffff, 0xb776d5f6, 0xffffffff, 0xb776d5f6, 0xffffffff, 0xffffb777,
907
+ 0xffffffff, 0xffffb777, 0xffffffff, 0xfffffb78, 0xffffffff, 0xfffffb78,
908
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
909
+ 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000000, 0x00000001,
910
+ 0x00000000, 0x0000000f, 0x00000000, 0x00000010, 0x00000000, 0x000fffff,
911
+ 0x00000000, 0x00100000, 0x00000000, 0x0ffffff0, 0x00000000, 0x10000000,
912
+ 0x0000000f, 0xfff0000f, 0x00000010, 0x00000000, 0x0000001f, 0xffc0007f,
913
+ 0x00000020, 0x00000000, 0x00080000, 0x00000000, 0x00100000, 0x00000001,
914
+ 0xffefffff, 0xffffffff, 0xfff80000, 0x00000000, 0xffffffdf, 0xffbfff80,
915
+ 0xffffffe0, 0x00000000, 0xffffffef, 0xffeffff0, 0xfffffff0, 0x00000000,
916
+ 0xffffffff, 0xeffffff0, 0xffffffff, 0xf0000000, 0xffffffff, 0xffd07c7a,
917
+ 0xffffffff, 0xffe9ac94, 0xffffffff, 0xfff00000, 0xffffffff, 0xfff00000,
918
+ 0xffffffff, 0xfffffff0, 0xffffffff, 0xfffffff0, 0xffffffff, 0xffffffff,
919
+ 0xffffffff, 0xffffffff, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
920
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
921
+ 0x00000000, 0x00000001, 0x00000000, 0x0000000f, 0x00000000, 0x00000010,
922
+ 0x00000000, 0x000fffff, 0x00000000, 0x00100000, 0x00000000, 0x0ffffff0,
923
+ 0x00000000, 0x10000000, 0x0000000f, 0xfff0000f, 0x00000010, 0x00000000,
924
+ 0x0000001f, 0xffc0007f, 0x00000020, 0x00000000, 0x00080000, 0x00000000,
925
+ 0x00100000, 0x00000000, 0xfff00000, 0x00000000, 0xfff80000, 0x00000000,
926
+ 0xffffffdf, 0xffbfff80, 0xffffffe0, 0x00000000, 0xffffffef, 0xffeffff0,
927
+ 0xfffffff0, 0x00000000, 0xffffffff, 0xeffffff0, 0xffffffff, 0xf0000000,
928
+ 0xffffffff, 0xffd07c7a, 0xffffffff, 0xffe9ac94, 0xffffffff, 0xfff00000,
929
+ 0xffffffff, 0xfff00000, 0xffffffff, 0xfffffff0, 0xffffffff, 0xfffffff0,
930
+ 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff, 0x00000000, 0x00000000,
931
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
932
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001,
933
+ 0x00000000, 0x00000001, 0x00000000, 0x0000ffff, 0x00000000, 0x00010000,
934
+ 0x00000000, 0x00ffffff, 0x00000000, 0x01000000, 0x00000000, 0xffff0001,
935
+ 0x00000001, 0x00000000, 0x00000001, 0xfffc0007, 0x00000002, 0x00000000,
936
+ 0x00008000, 0x00000000, 0x00010000, 0x00000001, 0xfffeffff, 0xffffffff,
937
+ 0xffff8000, 0x00000000, 0xfffffffd, 0xfffbfff8, 0xfffffffe, 0x00000000,
938
+ 0xfffffffe, 0xfffeffff, 0xffffffff, 0x00000000, 0xffffffff, 0xfeffffff,
939
+ 0xffffffff, 0xff000000, 0xffffffff, 0xfffd07c8, 0xffffffff, 0xfffe9aca,
940
+ 0xffffffff, 0xffff0000, 0xffffffff, 0xffff0000, 0xffffffff, 0xffffffff,
941
+ 0xffffffff, 0xffffffff, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
942
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
943
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
944
+ 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000000, 0x0000ffff,
945
+ 0x00000000, 0x00010000, 0x00000000, 0x00ffffff, 0x00000000, 0x01000000,
946
+ 0x00000000, 0xffff0000, 0x00000001, 0x00000000, 0x00000001, 0xfffc0007,
947
+ 0x00000002, 0x00000000, 0x00008000, 0x00000000, 0x00010000, 0x00000000,
948
+ 0xffff0000, 0x00000000, 0xffff8000, 0x00000000, 0xfffffffd, 0xfffbfff8,
949
+ 0xfffffffe, 0x00000000, 0xfffffffe, 0xfffeffff, 0xffffffff, 0x00000000,
950
+ 0xffffffff, 0xfeffffff, 0xffffffff, 0xff000000, 0xffffffff, 0xfffd07c8,
951
+ 0xffffffff, 0xfffe9aca, 0xffffffff, 0xffff0000, 0xffffffff, 0xffff0000,
952
+ 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff, 0x00000000, 0x00000000,
953
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
954
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
955
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
956
+ 0x00000000, 0x00000001, 0x00000000, 0x00000001, 0x00000000, 0x000000ff,
957
+ 0x00000000, 0x00000100, 0x00000000, 0x0000ffff, 0x00000000, 0x00010000,
958
+ 0x00000000, 0x0001fffc, 0x00000000, 0x00020000, 0x00000000, 0x80000000,
959
+ 0x00000001, 0x00000001, 0xfffffffe, 0xffffffff, 0xffffffff, 0x80000000,
960
+ 0xffffffff, 0xfffdfffc, 0xffffffff, 0xfffe0000, 0xffffffff, 0xfffeffff,
961
+ 0xffffffff, 0xffff0000, 0xffffffff, 0xffffff00, 0xffffffff, 0xffffff00,
962
+ 0xffffffff, 0xfffffffe, 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff,
963
+ 0xffffffff, 0xffffffff, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
964
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
965
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
966
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
967
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001,
968
+ 0x00000000, 0x000000ff, 0x00000000, 0x00000100, 0x00000000, 0x0000ffff,
969
+ 0x00000000, 0x00010000, 0x00000000, 0x0001fffc, 0x00000000, 0x00020000,
970
+ 0x00000000, 0x80000000, 0x00000001, 0x00000000, 0xffffffff, 0x00000000,
971
+ 0xffffffff, 0x80000000, 0xffffffff, 0xfffdfffc, 0xffffffff, 0xfffe0000,
972
+ 0xffffffff, 0xfffeffff, 0xffffffff, 0xffff0000, 0xffffffff, 0xffffff00,
973
+ 0xffffffff, 0xffffff00, 0xffffffff, 0xfffffffe, 0xffffffff, 0xffffffff,
974
+ 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff, 0x00000000, 0x00000000,
975
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
976
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
977
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
978
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
979
+ 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000000, 0x00000001,
980
+ 0x00000000, 0x000000ff, 0x00000000, 0x00000100, 0x00000000, 0x000001ff,
981
+ 0x00000000, 0x00000200, 0x00000000, 0x00800000, 0x00000000, 0x01000001,
982
+ 0xffffffff, 0xfeffffff, 0xffffffff, 0xff800000, 0xffffffff, 0xfffffe00,
983
+ 0xffffffff, 0xfffffe00, 0xffffffff, 0xffffff00, 0xffffffff, 0xffffff00,
984
+ 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff, 0x00000000, 0x00000000,
985
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
986
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
987
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
988
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
989
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
990
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
991
+ 0x00000000, 0x00000001, 0x00000000, 0x000000ff, 0x00000000, 0x00000100,
992
+ 0x00000000, 0x000001ff, 0x00000000, 0x00000200, 0x00000000, 0x00800000,
993
+ 0x00000000, 0x01000000, 0xffffffff, 0xff000000, 0xffffffff, 0xff800000,
994
+ 0xffffffff, 0xfffffe00, 0xffffffff, 0xfffffe00, 0xffffffff, 0xffffff00,
995
+ 0xffffffff, 0xffffff00, 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff,
996
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
997
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
998
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
999
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1000
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1001
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1002
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001,
1003
+ 0x00000000, 0x00000001, 0x00000000, 0x00000001, 0x00000000, 0x00000002,
1004
+ 0x00000000, 0x00008000, 0x00000000, 0x00010001, 0xffffffff, 0xfffeffff,
1005
+ 0xffffffff, 0xffff8000, 0xffffffff, 0xfffffffe, 0xffffffff, 0xfffffffe,
1006
+ 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff, 0x00000000, 0x00000000,
1007
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1008
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1009
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1010
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1011
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1012
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1013
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1014
+ 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000000, 0x00000001,
1015
+ 0x00000000, 0x00000002, 0x00000000, 0x00008000, 0x00000000, 0x00010000,
1016
+ 0xffffffff, 0xffff0000, 0xffffffff, 0xffff8000, 0xffffffff, 0xfffffffe,
1017
+ 0xffffffff, 0xfffffffe, 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff,
1018
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1019
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1020
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1021
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1022
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1023
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1024
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1025
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1026
+ 0x00000000, 0x00000001, 0x00000000, 0x00000001, 0x00000000, 0x00004000,
1027
+ 0x00000000, 0x00008001, 0xffffffff, 0xffff7fff, 0xffffffff, 0xffffc000,
1028
+ 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff, 0x00000000, 0x00000000,
1029
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1030
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1031
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1032
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1033
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1034
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1035
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1036
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1037
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001,
1038
+ 0x00000000, 0x00004000, 0x00000000, 0x00008000, 0xffffffff, 0xffff8000,
1039
+ 0xffffffff, 0xffffc000, 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff,
1040
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1041
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1042
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1043
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1044
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1045
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1046
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1047
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1048
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1049
+ 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000000, 0x00000002,
1050
+ 0xffffffff, 0xfffffffe, 0xffffffff, 0xffffffff, 0x00000000, 0x00000000,
1051
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1052
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1053
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1054
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1055
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1056
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1057
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1058
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1059
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1060
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1061
+ 0x00000000, 0x00000001, 0xffffffff, 0xffffffff, 0x00000000, 0x00000000,
1062
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1063
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1064
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1065
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1066
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1067
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1068
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1069
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1070
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1071
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1072
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1073
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1074
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1075
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1076
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1077
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1078
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1079
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1080
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1081
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1082
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1083
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0xffffffff, 0xffffffff,
1084
+ 0x00000000, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1085
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1086
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1087
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1088
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1089
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1090
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1091
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1092
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1093
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1094
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0xffffffff, 0xffffffff,
1095
+ 0xffffffff, 0xfffffffe, 0x00000000, 0x00000002, 0x00000000, 0x00000001,
1096
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1097
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1098
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1099
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1100
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1101
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1102
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1103
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1104
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1105
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1106
+ 0xffffffff, 0xffffc001, 0xffffffff, 0xffff8001, 0x00000000, 0x00007fff,
1107
+ 0x00000000, 0x00003fff, 0x00000000, 0x00000001, 0x00000000, 0x00000000,
1108
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1109
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1110
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1111
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1112
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1113
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1114
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1115
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1116
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1117
+ 0xffffffff, 0xffffffff, 0xffffffff, 0xffffc000, 0xffffffff, 0xffff8000,
1118
+ 0x00000000, 0x00008000, 0x00000000, 0x00004000, 0x00000000, 0x00000001,
1119
+ 0x00000000, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1120
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1121
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1122
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1123
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1124
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1125
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1126
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1127
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1128
+ 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff, 0xffff8001,
1129
+ 0xffffffff, 0xffff0001, 0x00000000, 0x0000ffff, 0x00000000, 0x00007fff,
1130
+ 0x00000000, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000001,
1131
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1132
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1133
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1134
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1135
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1136
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1137
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1138
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1139
+ 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff, 0xfffffffe,
1140
+ 0xffffffff, 0xffff8000, 0xffffffff, 0xffff0000, 0x00000000, 0x00010000,
1141
+ 0x00000000, 0x00008000, 0x00000000, 0x00000002, 0x00000000, 0x00000002,
1142
+ 0x00000000, 0x00000001, 0x00000000, 0x00000001, 0x00000000, 0x00000000,
1143
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1144
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1145
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1146
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1147
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1148
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1149
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1150
+ 0xffffffff, 0xffffff01, 0xffffffff, 0xffffff01, 0xffffffff, 0xfffffe01,
1151
+ 0xffffffff, 0xfffffe01, 0xffffffff, 0xff800001, 0xffffffff, 0xff000001,
1152
+ 0x00000000, 0x00ffffff, 0x00000000, 0x007fffff, 0x00000000, 0x00000200,
1153
+ 0x00000000, 0x000001ff, 0x00000000, 0x00000100, 0x00000000, 0x000000ff,
1154
+ 0x00000000, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1155
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1156
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1157
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1158
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1159
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1160
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1161
+ 0xffffffff, 0xffffffff, 0xffffffff, 0xffffff01, 0xffffffff, 0xffffff00,
1162
+ 0xffffffff, 0xfffffe01, 0xffffffff, 0xfffffe00, 0xffffffff, 0xff800000,
1163
+ 0xffffffff, 0xff000000, 0x00000000, 0x01000000, 0x00000000, 0x00800000,
1164
+ 0x00000000, 0x00000200, 0x00000000, 0x00000200, 0x00000000, 0x00000100,
1165
+ 0x00000000, 0x00000100, 0x00000000, 0x00000001, 0x00000000, 0x00000001,
1166
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1167
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1168
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1169
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1170
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1171
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1172
+ 0xffffffff, 0xffffffaa, 0xffffffff, 0xffffffaa, 0xffffffff, 0xffffa9cc,
1173
+ 0xffffffff, 0xffffa9cc, 0xffffffff, 0xffff5398, 0xffffffff, 0xffff5397,
1174
+ 0xffffffff, 0xd4e58e93, 0xffffffff, 0xa9cb1d25, 0x00000000, 0x5634e2db,
1175
+ 0x00000000, 0x2b1a716d, 0x00000000, 0x0000ac6b, 0x00000000, 0x0000ac69,
1176
+ 0x00000000, 0x00005635, 0x00000000, 0x00005634, 0x00000000, 0x00000056,
1177
+ 0x00000000, 0x00000056, 0x00000000, 0x00000001, 0x00000000, 0x00000000,
1178
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1179
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1180
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1181
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1182
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1183
+ 0x00000000, 0x00000000, 0xffffffff, 0xffffff49, 0xffffffff, 0xffffff49,
1184
+ 0xffffffff, 0xffff488a, 0xffffffff, 0xffff488a, 0xffffffff, 0xfffe9116,
1185
+ 0xffffffff, 0xfffe9113, 0xffffffff, 0xa4449506, 0xffffffff, 0x48892a0b,
1186
+ 0x00000000, 0xb776d5f5, 0x00000000, 0x5bbb6afa, 0x00000000, 0x00016ef0,
1187
+ 0x00000000, 0x00016eed, 0x00000000, 0x0000b777, 0x00000000, 0x0000b776,
1188
+ 0x00000000, 0x000000b7, 0x00000000, 0x000000b7, 0x00000000, 0x00000002,
1189
+ 0x00000000, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1190
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1191
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1192
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1193
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1194
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0xffffffff, 0xffffff01,
1195
+ 0xffffffff, 0xffffff01, 0xffffffff, 0xffff0001, 0xffffffff, 0xffff0001,
1196
+ 0xffffffff, 0xfffe0004, 0xffffffff, 0xfffe0001, 0xffffffff, 0x80000001,
1197
+ 0xffffffff, 0x00000001, 0x00000000, 0xffffffff, 0x00000000, 0x7fffffff,
1198
+ 0x00000000, 0x00020004, 0x00000000, 0x0001ffff, 0x00000000, 0x00010001,
1199
+ 0x00000000, 0x0000ffff, 0x00000000, 0x00000100, 0x00000000, 0x000000ff,
1200
+ 0x00000000, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000001,
1201
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1202
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1203
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1204
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1205
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0xffffffff, 0xffffffff,
1206
+ 0xffffffff, 0xffffff01, 0xffffffff, 0xffffff00, 0xffffffff, 0xffff0001,
1207
+ 0xffffffff, 0xffff0000, 0xffffffff, 0xfffe0004, 0xffffffff, 0xfffe0000,
1208
+ 0xffffffff, 0x80000000, 0xffffffff, 0x00000000, 0x00000001, 0x00000000,
1209
+ 0x00000000, 0x80000000, 0x00000000, 0x00020004, 0x00000000, 0x00020000,
1210
+ 0x00000000, 0x00010001, 0x00000000, 0x00010000, 0x00000000, 0x00000100,
1211
+ 0x00000000, 0x00000100, 0x00000000, 0x00000002, 0x00000000, 0x00000001,
1212
+ 0x00000000, 0x00000001, 0x00000000, 0x00000001, 0x00000000, 0x00000000,
1213
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1214
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1215
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1216
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0xffffffff, 0xffff0001,
1217
+ 0xffffffff, 0xffff0001, 0xffffffff, 0xff000001, 0xffffffff, 0xff000001,
1218
+ 0xffffffff, 0x00010000, 0xffffffff, 0x00000001, 0xfffffffe, 0x0003fff9,
1219
+ 0xfffffffe, 0x00000001, 0xffff8000, 0x00000001, 0xffff0000, 0x00000001,
1220
+ 0x0000ffff, 0xffffffff, 0x00007fff, 0xffffffff, 0x00000002, 0x00040008,
1221
+ 0x00000001, 0xffffffff, 0x00000001, 0x00010001, 0x00000000, 0xffffffff,
1222
+ 0x00000000, 0x01000001, 0x00000000, 0x00ffffff, 0x00000000, 0x0002f838,
1223
+ 0x00000000, 0x00016536, 0x00000000, 0x00010000, 0x00000000, 0x0000ffff,
1224
+ 0x00000000, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1225
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1226
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1227
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0xffffffff, 0xffffffff,
1228
+ 0xffffffff, 0xffff0001, 0xffffffff, 0xffff0000, 0xffffffff, 0xff000001,
1229
+ 0xffffffff, 0xff000000, 0xffffffff, 0x00010000, 0xffffffff, 0x00000000,
1230
+ 0xfffffffe, 0x0003fff9, 0xfffffffe, 0x00000000, 0xffff8000, 0x00000000,
1231
+ 0xffff0000, 0x00000000, 0x00010000, 0x00000000, 0x00008000, 0x00000000,
1232
+ 0x00000002, 0x00040008, 0x00000002, 0x00000000, 0x00000001, 0x00010001,
1233
+ 0x00000001, 0x00000000, 0x00000000, 0x01000001, 0x00000000, 0x01000000,
1234
+ 0x00000000, 0x0002f838, 0x00000000, 0x00016536, 0x00000000, 0x00010000,
1235
+ 0x00000000, 0x00010000, 0x00000000, 0x00000001, 0x00000000, 0x00000001,
1236
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1237
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1238
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0xffffffff, 0xfffffff1,
1239
+ 0xffffffff, 0xfffffff1, 0xffffffff, 0xfff00001, 0xffffffff, 0xfff00001,
1240
+ 0xffffffff, 0xf0000010, 0xffffffff, 0xf0000001, 0xfffffff0, 0x000ffff1,
1241
+ 0xfffffff0, 0x00000001, 0xffffffe0, 0x003fff81, 0xffffffe0, 0x00000001,
1242
+ 0xfff80000, 0x00000001, 0xfff00000, 0x00000001, 0x000fffff, 0xffffffff,
1243
+ 0x0007ffff, 0xffffffff, 0x00000020, 0x00400080, 0x0000001f, 0xffffffff,
1244
+ 0x00000010, 0x00100010, 0x0000000f, 0xffffffff, 0x00000000, 0x10000010,
1245
+ 0x00000000, 0x0fffffff, 0x00000000, 0x002f8386, 0x00000000, 0x0016536c,
1246
+ 0x00000000, 0x00100000, 0x00000000, 0x000fffff, 0x00000000, 0x00000010,
1247
+ 0x00000000, 0x0000000f, 0x00000000, 0x00000001, 0x00000000, 0x00000000,
1248
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1249
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0xffffffff, 0xffffffff,
1250
+ 0xffffffff, 0xfffffff1, 0xffffffff, 0xfffffff0, 0xffffffff, 0xfff00001,
1251
+ 0xffffffff, 0xfff00000, 0xffffffff, 0xf0000010, 0xffffffff, 0xf0000000,
1252
+ 0xfffffff0, 0x000ffff1, 0xfffffff0, 0x00000000, 0xffffffe0, 0x003fff81,
1253
+ 0xffffffe0, 0x00000000, 0xfff80000, 0x00000000, 0xfff00000, 0x00000000,
1254
+ 0x00100000, 0x00000000, 0x00080000, 0x00000000, 0x00000020, 0x00400080,
1255
+ 0x00000020, 0x00000000, 0x00000010, 0x00100010, 0x00000010, 0x00000000,
1256
+ 0x00000000, 0x10000010, 0x00000000, 0x10000000, 0x00000000, 0x002f8386,
1257
+ 0x00000000, 0x0016536c, 0x00000000, 0x00100000, 0x00000000, 0x00100000,
1258
+ 0x00000000, 0x00000010, 0x00000000, 0x00000010, 0x00000000, 0x00000001,
1259
+ 0x00000000, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
1260
+ 0x00000000, 0x00000000, 0xffffffff, 0xffffffff, 0xffffffff, 0xfffffa9d,
1261
+ 0xffffffff, 0xfffffa9d, 0xffffffff, 0xffffa9cc, 0xffffffff, 0xffffa9cc,
1262
+ 0xffffffff, 0xa9cb1d25, 0xffffffff, 0xa9cb1d25, 0xffffffa9, 0xcb1d7a7e,
1263
+ 0xffffffa9, 0xcb1d2449, 0xffffa9cb, 0x7358d531, 0xffffa9cb, 0x1d24488a,
1264
+ 0xffff5397, 0x93196ae0, 0xffff5396, 0x3a489113, 0xd4e58e92, 0x24449506,
1265
+ 0xa9cb1d24, 0x48892a0b, 0x5634e2db, 0xb776d5f5, 0x2b1a716d, 0xdbbb6afa,
1266
+ 0x0000ac6b, 0x1e8dac09, 0x0000ac69, 0xc5b76eed, 0x00005635, 0x3910f087,
1267
+ 0x00005634, 0xe2dbb776, 0x00000056, 0x34e331ec, 0x00000056, 0x34e2dbb7,
1268
+ 0x00000001, 0x00000002, 0x00000000, 0x784a3552, 0x00000000, 0x5634e2dc,
1269
+ 0x00000000, 0x5634e2db, 0x00000000, 0x00005634, 0x00000000, 0x00005634,
1270
+ 0x00000000, 0x00000563, 0x00000000, 0x00000563, 0x00000000, 0x00000001,
1271
+ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0xffffffff, 0xffffffff,
1272
+ 0xffffffff, 0xfffff801, 0xffffffff, 0xfffff801, 0xffffffff, 0xffff8001,
1273
+ 0xffffffff, 0xffff8001, 0xffffffff, 0x80000001, 0xffffffff, 0x80000001,
1274
+ 0xffffff80, 0x00008000, 0xffffff80, 0x00000001, 0xffff8000, 0x7fff8001,
1275
+ 0xffff8000, 0x00000001, 0xffff0001, 0xfffc0008, 0xffff0000, 0x00000001,
1276
+ 0xc0000000, 0x00000001, 0x80000000, 0x00000001, 0x7fffffff, 0xffffffff,
1277
+ 0x3fffffff, 0xffffffff, 0x00010002, 0x00040008, 0x0000ffff, 0xffffffff,
1278
+ 0x00008000, 0x80008000, 0x00007fff, 0xffffffff, 0x00000080, 0x00008000,
1279
+ 0x0000007f, 0xffffffff, 0x00000001, 0x7c1c33e6, 0x00000000, 0xb29b67a6,
1280
+ 0x00000000, 0x80000000, 0x00000000, 0x7fffffff, 0x00000000, 0x00008000,
1281
+ 0x00000000, 0x00007fff, 0x00000000, 0x00000800, 0x00000000, 0x000007ff,
1282
+ 0x00000000, 0x00000001, 0x00000000, 0x00000001
1283
+ ];
1284
+ toInt32s(TEST_DIV_BITS);
1285
+
1286
+ var TEST_STRINGS = [
1287
+ "-9223372036854775808",
1288
+ "-5226755067826871589",
1289
+ "-4503599627370497",
1290
+ "-4503599627370496",
1291
+ "-281474976710657",
1292
+ "-281474976710656",
1293
+ "-4294967297",
1294
+ "-4294967296",
1295
+ "-16777217",
1296
+ "-16777216",
1297
+ "-65537",
1298
+ "-65536",
1299
+ "-32769",
1300
+ "-32768",
1301
+ "-2",
1302
+ "-1",
1303
+ "0",
1304
+ "1",
1305
+ "2",
1306
+ "32767",
1307
+ "32768",
1308
+ "65535",
1309
+ "65536",
1310
+ "16777215",
1311
+ "16777216",
1312
+ "1446306523",
1313
+ "3078018549",
1314
+ "4294967295",
1315
+ "4294967296",
1316
+ "281474976710655",
1317
+ "281474976710656",
1318
+ "4503599627370495",
1319
+ "4503599627370496",
1320
+ "6211839219354490357",
1321
+ "9223372036854775807"
1322
+ ];
1323
+
1324
+ function testToFromBits() {
1325
+ for (var i = 0; i < TEST_BITS.length; i += 2) {
1326
+ var val = goog.math.Long.fromBits(TEST_BITS[i+1], TEST_BITS[i]);
1327
+ assertEquals(TEST_BITS[i], val.getHighBits());
1328
+ assertEquals(TEST_BITS[i+1], val.getLowBits());
1329
+ }
1330
+ }
1331
+
1332
+ function testToFromInt() {
1333
+ for (var i = 0; i < TEST_BITS.length; i += 1) {
1334
+ var val = goog.math.Long.fromInt(TEST_BITS[i]);
1335
+ assertEquals(TEST_BITS[i], val.toInt());
1336
+ }
1337
+ }
1338
+
1339
+ function testToFromNumber() {
1340
+ for (var i = 0; i < TEST_BITS.length; i += 2) {
1341
+ var num = TEST_BITS[i] * Math.pow(2, 32) +
1342
+ TEST_BITS[i+1] >= 0 ? TEST_BITS[i+1] : Math.pow(2, 32) + TEST_BITS[i+1];
1343
+ var val = goog.math.Long.fromNumber(num);
1344
+ assertEquals(num, val.toNumber());
1345
+ }
1346
+ }
1347
+
1348
+ function testIsZero() {
1349
+ for (var i = 0; i < TEST_BITS.length; i += 2) {
1350
+ var val = goog.math.Long.fromBits(TEST_BITS[i+1], TEST_BITS[i]);
1351
+ assertEquals(TEST_BITS[i] == 0 && TEST_BITS[i+1] == 0, val.isZero());
1352
+ }
1353
+ }
1354
+
1355
+ function testIsNegative() {
1356
+ for (var i = 0; i < TEST_BITS.length; i += 2) {
1357
+ var val = goog.math.Long.fromBits(TEST_BITS[i+1], TEST_BITS[i]);
1358
+ assertEquals((TEST_BITS[i] >> 31) != 0, val.isNegative());
1359
+ }
1360
+ }
1361
+
1362
+ function testIsOdd() {
1363
+ for (var i = 0; i < TEST_BITS.length; i += 2) {
1364
+ var val = goog.math.Long.fromBits(TEST_BITS[i+1], TEST_BITS[i]);
1365
+ assertEquals((TEST_BITS[i+1] & 1) != 0, val.isOdd());
1366
+ }
1367
+ }
1368
+
1369
+ function createTestComparisons(i) {
1370
+ return function() {
1371
+ var vi = goog.math.Long.fromBits(TEST_BITS[i+1], TEST_BITS[i]);
1372
+ for (var j = 0; j < TEST_BITS.length; j += 2) {
1373
+ var vj = goog.math.Long.fromBits(TEST_BITS[j+1], TEST_BITS[j]);
1374
+ assertEquals(i == j, vi.equals(vj));
1375
+ assertEquals(i != j, vi.notEquals(vj));
1376
+ assertEquals(i < j, vi.lessThan(vj));
1377
+ assertEquals(i <= j, vi.lessThanOrEqual(vj));
1378
+ assertEquals(i > j, vi.greaterThan(vj));
1379
+ assertEquals(i >= j, vi.greaterThanOrEqual(vj));
1380
+ }
1381
+ };
1382
+ }
1383
+
1384
+ // Here and below, we translate one conceptual test (e.g., "testComparisons")
1385
+ // into a number of test functions that will be run separately by jsunit. This
1386
+ // is necessary because, in some testing configurations, the full combined test
1387
+ // can take so long that it times out. These smaller tests run much faster.
1388
+ for (var i = 0; i < TEST_BITS.length; i += 2) {
1389
+ goog.global['testComparisons' + i] = createTestComparisons(i);
1390
+ }
1391
+
1392
+ function createTestBitOperations(i) {
1393
+ return function() {
1394
+ var vi = goog.math.Long.fromBits(TEST_BITS[i+1], TEST_BITS[i]);
1395
+ assertEquals(~TEST_BITS[i], vi.not().getHighBits());
1396
+ assertEquals(~TEST_BITS[i+1], vi.not().getLowBits());
1397
+
1398
+ for (var j = 0; j < TEST_BITS.length; j += 2) {
1399
+ var vj = goog.math.Long.fromBits(TEST_BITS[j+1], TEST_BITS[j]);
1400
+ assertEquals(TEST_BITS[i] & TEST_BITS[j], vi.and(vj).getHighBits());
1401
+ assertEquals(TEST_BITS[i+1] & TEST_BITS[j+1], vi.and(vj).getLowBits());
1402
+ assertEquals(TEST_BITS[i] | TEST_BITS[j], vi.or(vj).getHighBits());
1403
+ assertEquals(TEST_BITS[i+1] | TEST_BITS[j+1], vi.or(vj).getLowBits());
1404
+ assertEquals(TEST_BITS[i] ^ TEST_BITS[j], vi.xor(vj).getHighBits());
1405
+ assertEquals(TEST_BITS[i+1] ^ TEST_BITS[j+1], vi.xor(vj).getLowBits());
1406
+ }
1407
+
1408
+ assertEquals(TEST_BITS[i], vi.shiftLeft(0).getHighBits());
1409
+ assertEquals(TEST_BITS[i+1], vi.shiftLeft(0).getLowBits());
1410
+ assertEquals(TEST_BITS[i], vi.shiftRight(0).getHighBits());
1411
+ assertEquals(TEST_BITS[i+1], vi.shiftRight(0).getLowBits());
1412
+ assertEquals(TEST_BITS[i], vi.shiftRightUnsigned(0).getHighBits());
1413
+ assertEquals(TEST_BITS[i+1], vi.shiftRightUnsigned(0).getLowBits());
1414
+
1415
+ for (var len = 1; len < 64; ++len) {
1416
+ if (len < 32) {
1417
+ assertEquals((TEST_BITS[i] << len) | (TEST_BITS[i+1] >>> (32 - len)),
1418
+ vi.shiftLeft(len).getHighBits());
1419
+ assertEquals(TEST_BITS[i+1] << len, vi.shiftLeft(len).getLowBits());
1420
+
1421
+ assertEquals(TEST_BITS[i] >> len, vi.shiftRight(len).getHighBits());
1422
+ assertEquals((TEST_BITS[i+1] >>> len) | (TEST_BITS[i] << (32 - len)),
1423
+ vi.shiftRight(len).getLowBits());
1424
+
1425
+ assertEquals(TEST_BITS[i] >>> len,
1426
+ vi.shiftRightUnsigned(len).getHighBits());
1427
+ assertEquals((TEST_BITS[i+1] >>> len) | (TEST_BITS[i] << (32 - len)),
1428
+ vi.shiftRightUnsigned(len).getLowBits());
1429
+ } else {
1430
+ assertEquals(TEST_BITS[i+1] << (len - 32),
1431
+ vi.shiftLeft(len).getHighBits());
1432
+ assertEquals(0, vi.shiftLeft(len).getLowBits());
1433
+
1434
+ assertEquals(TEST_BITS[i] >= 0 ? 0 : -1,
1435
+ vi.shiftRight(len).getHighBits());
1436
+ assertEquals(TEST_BITS[i] >> (len - 32),
1437
+ vi.shiftRight(len).getLowBits());
1438
+
1439
+ assertEquals(0, vi.shiftRightUnsigned(len).getHighBits());
1440
+ if (len == 32) {
1441
+ assertEquals(TEST_BITS[i], vi.shiftRightUnsigned(len).getLowBits());
1442
+ } else {
1443
+ assertEquals(TEST_BITS[i] >>> (len - 32),
1444
+ vi.shiftRightUnsigned(len).getLowBits());
1445
+ }
1446
+ }
1447
+ }
1448
+
1449
+ assertEquals(TEST_BITS[i], vi.shiftLeft(64).getHighBits());
1450
+ assertEquals(TEST_BITS[i+1], vi.shiftLeft(64).getLowBits());
1451
+ assertEquals(TEST_BITS[i], vi.shiftRight(64).getHighBits());
1452
+ assertEquals(TEST_BITS[i+1], vi.shiftRight(64).getLowBits());
1453
+ assertEquals(TEST_BITS[i], vi.shiftRightUnsigned(64).getHighBits());
1454
+ assertEquals(TEST_BITS[i+1], vi.shiftRightUnsigned(64).getLowBits());
1455
+ };
1456
+ }
1457
+
1458
+ for (var i = 0; i < TEST_BITS.length; i += 2) {
1459
+ goog.global['testBitOperations' + i] = createTestBitOperations(i);
1460
+ }
1461
+
1462
+ function testNegation() {
1463
+ for (var i = 0; i < TEST_BITS.length; i += 2) {
1464
+ var vi = goog.math.Long.fromBits(TEST_BITS[i+1], TEST_BITS[i]);
1465
+ if (TEST_BITS[i+1] == 0) {
1466
+ assertEquals((~TEST_BITS[i] + 1)|0, vi.negate().getHighBits());
1467
+ assertEquals(0, vi.negate().getLowBits());
1468
+ } else {
1469
+ assertEquals(~TEST_BITS[i], vi.negate().getHighBits());
1470
+ assertEquals((~TEST_BITS[i+1] + 1)|0, vi.negate().getLowBits());
1471
+ }
1472
+ }
1473
+ }
1474
+
1475
+ function testAdd() {
1476
+ var count = 0;
1477
+ for (var i = 0; i < TEST_BITS.length; i += 2) {
1478
+ var vi = goog.math.Long.fromBits(TEST_BITS[i+1], TEST_BITS[i]);
1479
+ for (var j = 0; j < i; j += 2) {
1480
+ var vj = goog.math.Long.fromBits(TEST_BITS[j+1], TEST_BITS[j]);
1481
+ var result = vi.add(vj);
1482
+ assertEquals(TEST_ADD_BITS[count++], result.getHighBits());
1483
+ assertEquals(TEST_ADD_BITS[count++], result.getLowBits());
1484
+ }
1485
+ }
1486
+ }
1487
+
1488
+ function testSubtract() {
1489
+ var count = 0;
1490
+ for (var i = 0; i < TEST_BITS.length; i += 2) {
1491
+ var vi = goog.math.Long.fromBits(TEST_BITS[i+1], TEST_BITS[i]);
1492
+ for (var j = 0; j < TEST_BITS.length; j += 2) {
1493
+ var vj = goog.math.Long.fromBits(TEST_BITS[j+1], TEST_BITS[j]);
1494
+ var result = vi.subtract(vj);
1495
+ assertEquals(TEST_SUB_BITS[count++], result.getHighBits());
1496
+ assertEquals(TEST_SUB_BITS[count++], result.getLowBits());
1497
+ }
1498
+ }
1499
+ }
1500
+
1501
+ function testMultiply() {
1502
+ var count = 0;
1503
+ for (var i = 0; i < TEST_BITS.length; i += 2) {
1504
+ var vi = goog.math.Long.fromBits(TEST_BITS[i+1], TEST_BITS[i]);
1505
+ for (var j = 0; j < i; j += 2) {
1506
+ var vj = goog.math.Long.fromBits(TEST_BITS[j+1], TEST_BITS[j]);
1507
+ var result = vi.multiply(vj);
1508
+ assertEquals(TEST_MUL_BITS[count++], result.getHighBits());
1509
+ assertEquals(TEST_MUL_BITS[count++], result.getLowBits());
1510
+ }
1511
+ }
1512
+ }
1513
+
1514
+ function createTestDivMod(i, count) {
1515
+ return function() {
1516
+ var vi = goog.math.Long.fromBits(TEST_BITS[i+1], TEST_BITS[i]);
1517
+ for (var j = 0; j < TEST_BITS.length; j += 2) {
1518
+ var vj = goog.math.Long.fromBits(TEST_BITS[j+1], TEST_BITS[j]);
1519
+ if (!vj.isZero()) {
1520
+ var divResult = vi.div(vj);
1521
+ assertEquals(TEST_DIV_BITS[count++], divResult.getHighBits());
1522
+ assertEquals(TEST_DIV_BITS[count++], divResult.getLowBits());
1523
+
1524
+ var modResult = vi.modulo(vj);
1525
+ var combinedResult = divResult.multiply(vj).add(modResult);
1526
+ assertTrue(vi.equals(combinedResult));
1527
+ }
1528
+ }
1529
+ }
1530
+ }
1531
+
1532
+ var countPerDivModCall = 0;
1533
+ for (var j = 0; j < TEST_BITS.length; j += 2) {
1534
+ var vj = goog.math.Long.fromBits(TEST_BITS[j+1], TEST_BITS[j]);
1535
+ if (!vj.isZero()) {
1536
+ countPerDivModCall += 2;
1537
+ }
1538
+ }
1539
+
1540
+ var countDivMod = 0;
1541
+ for (var i = 0; i < TEST_BITS.length; i += 2) {
1542
+ goog.global['testDivMod' + i] = createTestDivMod(i, countDivMod);
1543
+ countDivMod += countPerDivModCall;
1544
+ }
1545
+
1546
+ function createTestToFromString(i) {
1547
+ return function() {
1548
+ var vi = goog.math.Long.fromBits(TEST_BITS[i+1], TEST_BITS[i]);
1549
+ var str = vi.toString(10);
1550
+ assertEquals(TEST_STRINGS[i/2], str);
1551
+ assertEquals(TEST_BITS[i],
1552
+ goog.math.Long.fromString(str, 10).getHighBits());
1553
+ assertEquals(TEST_BITS[i+1],
1554
+ goog.math.Long.fromString(str, 10).getLowBits());
1555
+
1556
+ for (var radix = 2; radix <= 36; ++radix) {
1557
+ var result = vi.toString(radix);
1558
+ assertEquals(TEST_BITS[i],
1559
+ goog.math.Long.fromString(result, radix).getHighBits());
1560
+ assertEquals(TEST_BITS[i+1],
1561
+ goog.math.Long.fromString(result, radix).getLowBits());
1562
+ }
1563
+ }
1564
+ }
1565
+
1566
+ for (var i = 0; i < TEST_BITS.length; i += 2) {
1567
+ goog.global['testToFromString' + i] = createTestToFromString(i);
1568
+ }
1569
+ </script>
1570
+ </body>
1571
+ </html>