minimum_viable_product 0.0.10 → 0.0.11

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3621) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/stylesheets/minimum_viable_product/components/typography.scss +4 -0
  3. data/app/assets/stylesheets/minimum_viable_product/layout/carousel.scss +0 -1
  4. data/app/controllers/{minimum_viable_product/concerns → concerns/minimum_viable_product}/analytics_concern.rb +0 -0
  5. data/app/controllers/{minimum_viable_product/concerns → concerns/minimum_viable_product}/seo_concern.rb +0 -0
  6. data/app/controllers/{minimum_viable_product/concerns → concerns/minimum_viable_product}/session_concern.rb +0 -0
  7. data/app/controllers/minimum_viable_product/controller.rb +0 -4
  8. data/app/models/concerns/{slugification.rb → minimum_viable_product/slugification.rb} +0 -0
  9. data/app/views/layouts/minimum_viable_product/application.html.erb +3 -2
  10. data/app/views/layouts/minimum_viable_product/carousel.html.erb +9 -9
  11. data/bin/mvp +2 -1
  12. data/config/initializers/assets.rb +4 -0
  13. data/lib/minimum_viable_product/engine.rb +2 -1
  14. data/lib/minimum_viable_product/version.rb +1 -1
  15. data/test/dummy/app/assets/images/gardenwork.jpg +0 -0
  16. data/test/dummy/app/assets/javascripts/application.js +4 -12
  17. data/test/dummy/app/assets/javascripts/home.js +2 -0
  18. data/test/dummy/app/assets/stylesheets/application.scss +6 -0
  19. data/test/dummy/app/assets/stylesheets/home.scss +3 -0
  20. data/test/dummy/app/controllers/home_controller.rb +2 -0
  21. data/test/dummy/app/helpers/home_helper.rb +2 -0
  22. data/test/dummy/app/views/home/index.html.erb +16 -0
  23. data/test/dummy/config/application.rb +1 -1
  24. data/test/dummy/config/database.yml +4 -10
  25. data/test/dummy/config/initializers/assets.rb +3 -0
  26. data/test/dummy/config/routes.rb +2 -2
  27. data/test/dummy/db/schema.rb +19 -0
  28. data/test/dummy/log/development.log +2972 -0
  29. data/test/dummy/node_modules/JSONStream/LICENSE.APACHE2 +15 -0
  30. data/test/dummy/node_modules/JSONStream/LICENSE.MIT +24 -0
  31. data/test/dummy/node_modules/JSONStream/examples/all_docs.js +13 -0
  32. data/test/dummy/node_modules/JSONStream/index.js +216 -0
  33. data/test/dummy/node_modules/JSONStream/package.json +104 -0
  34. data/test/dummy/node_modules/JSONStream/readme.markdown +184 -0
  35. data/test/dummy/node_modules/JSONStream/test/bool.js +41 -0
  36. data/test/dummy/node_modules/JSONStream/test/browser.js +18 -0
  37. data/test/dummy/node_modules/JSONStream/test/destroy_missing.js +27 -0
  38. data/test/dummy/node_modules/JSONStream/test/disabled/doubledot1.js +29 -0
  39. data/test/dummy/node_modules/JSONStream/test/disabled/doubledot2.js +29 -0
  40. data/test/dummy/node_modules/JSONStream/test/empty.js +44 -0
  41. data/test/dummy/node_modules/JSONStream/test/fixtures/all_npm.json +4030 -0
  42. data/test/dummy/node_modules/JSONStream/test/fixtures/couch_sample.json +18 -0
  43. data/test/dummy/node_modules/JSONStream/test/fixtures/depth.json +15 -0
  44. data/test/dummy/node_modules/JSONStream/test/fn.js +39 -0
  45. data/test/dummy/node_modules/JSONStream/test/gen.js +135 -0
  46. data/test/dummy/node_modules/JSONStream/test/issues.js +34 -0
  47. data/test/dummy/node_modules/JSONStream/test/keys.js +85 -0
  48. data/test/dummy/node_modules/JSONStream/test/map.js +40 -0
  49. data/test/dummy/node_modules/JSONStream/test/multiple_objects.js +36 -0
  50. data/test/dummy/node_modules/JSONStream/test/multiple_objects_error.js +29 -0
  51. data/test/dummy/node_modules/JSONStream/test/null.js +28 -0
  52. data/test/dummy/node_modules/JSONStream/test/parsejson.js +25 -0
  53. data/test/dummy/node_modules/JSONStream/test/stringify.js +41 -0
  54. data/test/dummy/node_modules/JSONStream/test/stringify_object.js +47 -0
  55. data/test/dummy/node_modules/JSONStream/test/test.js +35 -0
  56. data/test/dummy/node_modules/JSONStream/test/test2.js +29 -0
  57. data/test/dummy/node_modules/JSONStream/test/two-ways.js +41 -0
  58. data/test/dummy/node_modules/acorn/AUTHORS +38 -0
  59. data/test/dummy/node_modules/acorn/LICENSE +19 -0
  60. data/test/dummy/node_modules/acorn/README.md +377 -0
  61. data/test/dummy/node_modules/acorn/bin/acorn +54 -0
  62. data/test/dummy/node_modules/acorn/bin/build-acorn.js +51 -0
  63. data/test/dummy/node_modules/acorn/bin/generate-identifier-regex.js +47 -0
  64. data/test/dummy/node_modules/acorn/bin/prepublish.sh +2 -0
  65. data/test/dummy/node_modules/acorn/bin/update_authors.sh +6 -0
  66. data/test/dummy/node_modules/acorn/bin/without_eval +48 -0
  67. data/test/dummy/node_modules/acorn/dist/acorn.js +4014 -0
  68. data/test/dummy/node_modules/acorn/dist/acorn_csp.js +3985 -0
  69. data/test/dummy/node_modules/acorn/dist/acorn_loose.js +1298 -0
  70. data/test/dummy/node_modules/acorn/dist/walk.js +342 -0
  71. data/test/dummy/node_modules/acorn/package.json +193 -0
  72. data/test/dummy/node_modules/acorn/src/expression.js +697 -0
  73. data/test/dummy/node_modules/acorn/src/identifier.js +129 -0
  74. data/test/dummy/node_modules/acorn/src/index.js +75 -0
  75. data/test/dummy/node_modules/acorn/src/location.js +68 -0
  76. data/test/dummy/node_modules/acorn/src/loose/acorn_loose.js +0 -0
  77. data/test/dummy/node_modules/acorn/src/loose/expression.js +511 -0
  78. data/test/dummy/node_modules/acorn/src/loose/index.js +50 -0
  79. data/test/dummy/node_modules/acorn/src/loose/parseutil.js +126 -0
  80. data/test/dummy/node_modules/acorn/src/loose/state.js +17 -0
  81. data/test/dummy/node_modules/acorn/src/loose/statement.js +419 -0
  82. data/test/dummy/node_modules/acorn/src/loose/tokenize.js +108 -0
  83. data/test/dummy/node_modules/acorn/src/lval.js +213 -0
  84. data/test/dummy/node_modules/acorn/src/node.js +70 -0
  85. data/test/dummy/node_modules/acorn/src/options.js +119 -0
  86. data/test/dummy/node_modules/acorn/src/parseutil.js +89 -0
  87. data/test/dummy/node_modules/acorn/src/state.js +78 -0
  88. data/test/dummy/node_modules/acorn/src/statement.js +594 -0
  89. data/test/dummy/node_modules/acorn/src/tokencontext.js +107 -0
  90. data/test/dummy/node_modules/acorn/src/tokenize.js +672 -0
  91. data/test/dummy/node_modules/acorn/src/tokentype.js +142 -0
  92. data/test/dummy/node_modules/acorn/src/util.js +9 -0
  93. data/test/dummy/node_modules/acorn/src/walk/index.js +291 -0
  94. data/test/dummy/node_modules/acorn/src/whitespace.js +12 -0
  95. data/test/dummy/node_modules/array-filter/README.md +54 -0
  96. data/test/dummy/node_modules/array-filter/index.js +19 -0
  97. data/test/dummy/node_modules/array-filter/package.json +96 -0
  98. data/test/dummy/node_modules/array-filter/test/filter.js +12 -0
  99. data/test/dummy/node_modules/array-filter/test/holes.js +12 -0
  100. data/test/dummy/node_modules/array-map/LICENSE +18 -0
  101. data/test/dummy/node_modules/array-map/example/map.js +5 -0
  102. data/test/dummy/node_modules/array-map/index.js +11 -0
  103. data/test/dummy/node_modules/array-map/package.json +100 -0
  104. data/test/dummy/node_modules/array-map/readme.markdown +46 -0
  105. data/test/dummy/node_modules/array-map/test/map.js +77 -0
  106. data/test/dummy/node_modules/array-reduce/LICENSE +18 -0
  107. data/test/dummy/node_modules/array-reduce/example/sum.js +4 -0
  108. data/test/dummy/node_modules/array-reduce/index.js +18 -0
  109. data/test/dummy/node_modules/array-reduce/package.json +99 -0
  110. data/test/dummy/node_modules/array-reduce/readme.markdown +46 -0
  111. data/test/dummy/node_modules/array-reduce/test/reduce.js +85 -0
  112. data/test/dummy/node_modules/asn1.js/README.md +100 -0
  113. data/test/dummy/node_modules/asn1.js/lib/asn1.js +9 -0
  114. data/test/dummy/node_modules/asn1.js/lib/asn1/api.js +61 -0
  115. data/test/dummy/node_modules/asn1.js/lib/asn1/base/buffer.js +116 -0
  116. data/test/dummy/node_modules/asn1.js/lib/asn1/base/index.js +6 -0
  117. data/test/dummy/node_modules/asn1.js/lib/asn1/base/node.js +629 -0
  118. data/test/dummy/node_modules/asn1.js/lib/asn1/base/reporter.js +121 -0
  119. data/test/dummy/node_modules/asn1.js/lib/asn1/constants/der.js +42 -0
  120. data/test/dummy/node_modules/asn1.js/lib/asn1/constants/index.js +19 -0
  121. data/test/dummy/node_modules/asn1.js/lib/asn1/decoders/der.js +322 -0
  122. data/test/dummy/node_modules/asn1.js/lib/asn1/decoders/index.js +4 -0
  123. data/test/dummy/node_modules/asn1.js/lib/asn1/decoders/pem.js +49 -0
  124. data/test/dummy/node_modules/asn1.js/lib/asn1/encoders/der.js +293 -0
  125. data/test/dummy/node_modules/asn1.js/lib/asn1/encoders/index.js +4 -0
  126. data/test/dummy/node_modules/asn1.js/lib/asn1/encoders/pem.js +21 -0
  127. data/test/dummy/node_modules/asn1.js/package.json +89 -0
  128. data/test/dummy/node_modules/asn1.js/rfc/2560/index.js +149 -0
  129. data/test/dummy/node_modules/asn1.js/rfc/2560/package.json +27 -0
  130. data/test/dummy/node_modules/asn1.js/rfc/2560/test/basic-test.js +50 -0
  131. data/test/dummy/node_modules/asn1.js/rfc/5280/index.js +883 -0
  132. data/test/dummy/node_modules/asn1.js/rfc/5280/package.json +24 -0
  133. data/test/dummy/node_modules/asn1.js/rfc/5280/test/basic-test.js +132 -0
  134. data/test/dummy/node_modules/asn1.js/rfc/5280/test/fixtures/cert1.crt +0 -0
  135. data/test/dummy/node_modules/asn1.js/rfc/5280/test/fixtures/cert2.crt +0 -0
  136. data/test/dummy/node_modules/asn1.js/rfc/5280/test/fixtures/cert3.crt +0 -0
  137. data/test/dummy/node_modules/asn1.js/rfc/5280/test/fixtures/cert4.crt +0 -0
  138. data/test/dummy/node_modules/asn1.js/rfc/5280/test/fixtures/cert5.crt +0 -0
  139. data/test/dummy/node_modules/asn1.js/rfc/5280/test/fixtures/cert6.crt +0 -0
  140. data/test/dummy/node_modules/asn1.js/test/der-decode-test.js +160 -0
  141. data/test/dummy/node_modules/asn1.js/test/der-encode-test.js +144 -0
  142. data/test/dummy/node_modules/asn1.js/test/error-test.js +222 -0
  143. data/test/dummy/node_modules/asn1.js/test/fixtures.js +7 -0
  144. data/test/dummy/node_modules/asn1.js/test/pem-test.js +54 -0
  145. data/test/dummy/node_modules/asn1.js/test/ping-pong-test.js +170 -0
  146. data/test/dummy/node_modules/asn1.js/test/tracking-test.js +54 -0
  147. data/test/dummy/node_modules/asn1.js/test/use-test.js +128 -0
  148. data/test/dummy/node_modules/assert/LICENSE +18 -0
  149. data/test/dummy/node_modules/assert/README.md +64 -0
  150. data/test/dummy/node_modules/assert/assert.js +359 -0
  151. data/test/dummy/node_modules/assert/package.json +80 -0
  152. data/test/dummy/node_modules/assert/test.js +343 -0
  153. data/test/dummy/node_modules/astw/LICENSE +18 -0
  154. data/test/dummy/node_modules/astw/example/types.js +8 -0
  155. data/test/dummy/node_modules/astw/index.js +51 -0
  156. data/test/dummy/node_modules/astw/package.json +96 -0
  157. data/test/dummy/node_modules/astw/readme.markdown +52 -0
  158. data/test/dummy/node_modules/astw/test/json.js +13 -0
  159. data/test/dummy/node_modules/astw/test/parent.js +25 -0
  160. data/test/dummy/node_modules/async/CHANGELOG.md +125 -0
  161. data/test/dummy/node_modules/async/LICENSE +19 -0
  162. data/test/dummy/node_modules/async/README.md +1877 -0
  163. data/test/dummy/node_modules/async/dist/async.js +1265 -0
  164. data/test/dummy/node_modules/async/dist/async.min.js +2 -0
  165. data/test/dummy/node_modules/async/lib/async.js +1265 -0
  166. data/test/dummy/node_modules/async/package.json +149 -0
  167. data/test/dummy/node_modules/balanced-match/LICENSE.md +21 -0
  168. data/test/dummy/node_modules/balanced-match/README.md +91 -0
  169. data/test/dummy/node_modules/balanced-match/index.js +58 -0
  170. data/test/dummy/node_modules/balanced-match/package.json +102 -0
  171. data/test/dummy/node_modules/base64-js/LICENSE.MIT +21 -0
  172. data/test/dummy/node_modules/base64-js/README.md +31 -0
  173. data/test/dummy/node_modules/base64-js/base64js.min.js +1 -0
  174. data/test/dummy/node_modules/base64-js/bower.json +33 -0
  175. data/test/dummy/node_modules/base64-js/lib/b64.js +109 -0
  176. data/test/dummy/node_modules/base64-js/package.json +87 -0
  177. data/test/dummy/node_modules/base64-js/test/big-data.js +24 -0
  178. data/test/dummy/node_modules/base64-js/test/convert.js +47 -0
  179. data/test/dummy/node_modules/base64-js/test/url-safe.js +18 -0
  180. data/test/dummy/node_modules/bn.js/README.md +219 -0
  181. data/test/dummy/node_modules/bn.js/lib/bn.js +3427 -0
  182. data/test/dummy/node_modules/bn.js/package.json +104 -0
  183. data/test/dummy/node_modules/bn.js/test/arithmetic-test.js +635 -0
  184. data/test/dummy/node_modules/bn.js/test/binary-test.js +233 -0
  185. data/test/dummy/node_modules/bn.js/test/constructor-test.js +149 -0
  186. data/test/dummy/node_modules/bn.js/test/fixtures.js +264 -0
  187. data/test/dummy/node_modules/bn.js/test/pummel/dh-group-test.js +23 -0
  188. data/test/dummy/node_modules/bn.js/test/red-test.js +263 -0
  189. data/test/dummy/node_modules/bn.js/test/utils-test.js +345 -0
  190. data/test/dummy/node_modules/bn.js/util/genCombMulTo.js +65 -0
  191. data/test/dummy/node_modules/bn.js/util/genCombMulTo10.js +65 -0
  192. data/test/dummy/node_modules/brace-expansion/README.md +122 -0
  193. data/test/dummy/node_modules/brace-expansion/index.js +201 -0
  194. data/test/dummy/node_modules/brace-expansion/package.json +104 -0
  195. data/test/dummy/node_modules/brorand/README.md +26 -0
  196. data/test/dummy/node_modules/brorand/index.js +57 -0
  197. data/test/dummy/node_modules/brorand/package.json +81 -0
  198. data/test/dummy/node_modules/brorand/test/api-test.js +8 -0
  199. data/test/dummy/node_modules/browser-pack/LICENSE +18 -0
  200. data/test/dummy/node_modules/browser-pack/_prelude.js +1 -0
  201. data/test/dummy/node_modules/browser-pack/bin/cmd.js +4 -0
  202. data/test/dummy/node_modules/browser-pack/bin/prepublish.js +8 -0
  203. data/test/dummy/node_modules/browser-pack/example/input.json +13 -0
  204. data/test/dummy/node_modules/browser-pack/example/output.js +1 -0
  205. data/test/dummy/node_modules/browser-pack/example/sourcemap/input.json +15 -0
  206. data/test/dummy/node_modules/browser-pack/example/sourcemap/output.js +6 -0
  207. data/test/dummy/node_modules/browser-pack/index.js +121 -0
  208. data/test/dummy/node_modules/browser-pack/package.json +120 -0
  209. data/test/dummy/node_modules/browser-pack/prelude.js +44 -0
  210. data/test/dummy/node_modules/browser-pack/readme.markdown +96 -0
  211. data/test/dummy/node_modules/browser-pack/test/comment.js +33 -0
  212. data/test/dummy/node_modules/browser-pack/test/empty.js +33 -0
  213. data/test/dummy/node_modules/browser-pack/test/not_found.js +34 -0
  214. data/test/dummy/node_modules/browser-pack/test/only_execute_entries.js +26 -0
  215. data/test/dummy/node_modules/browser-pack/test/order.js +38 -0
  216. data/test/dummy/node_modules/browser-pack/test/pack.js +28 -0
  217. data/test/dummy/node_modules/browser-pack/test/raw.js +32 -0
  218. data/test/dummy/node_modules/browser-pack/test/source-maps-existing.js +59 -0
  219. data/test/dummy/node_modules/browser-pack/test/source-maps.js +195 -0
  220. data/test/dummy/node_modules/browser-pack/test/this.js +24 -0
  221. data/test/dummy/node_modules/browser-pack/test/unicode.js +32 -0
  222. data/test/dummy/node_modules/browser-resolve/LICENSE +21 -0
  223. data/test/dummy/node_modules/browser-resolve/empty.js +0 -0
  224. data/test/dummy/node_modules/browser-resolve/index.js +343 -0
  225. data/test/dummy/node_modules/browser-resolve/package.json +93 -0
  226. data/test/dummy/node_modules/browserify-aes/LICENSE +21 -0
  227. data/test/dummy/node_modules/browserify-aes/aes.js +177 -0
  228. data/test/dummy/node_modules/browserify-aes/authCipher.js +97 -0
  229. data/test/dummy/node_modules/browserify-aes/browser.js +11 -0
  230. data/test/dummy/node_modules/browserify-aes/decrypter.js +137 -0
  231. data/test/dummy/node_modules/browserify-aes/encrypter.js +122 -0
  232. data/test/dummy/node_modules/browserify-aes/ghash.js +98 -0
  233. data/test/dummy/node_modules/browserify-aes/index.js +7 -0
  234. data/test/dummy/node_modules/browserify-aes/modes.js +171 -0
  235. data/test/dummy/node_modules/browserify-aes/modes/cbc.js +17 -0
  236. data/test/dummy/node_modules/browserify-aes/modes/cfb.js +31 -0
  237. data/test/dummy/node_modules/browserify-aes/modes/cfb1.js +34 -0
  238. data/test/dummy/node_modules/browserify-aes/modes/cfb8.js +15 -0
  239. data/test/dummy/node_modules/browserify-aes/modes/ctr.js +31 -0
  240. data/test/dummy/node_modules/browserify-aes/modes/ecb.js +6 -0
  241. data/test/dummy/node_modules/browserify-aes/modes/ofb.js +16 -0
  242. data/test/dummy/node_modules/browserify-aes/package.json +104 -0
  243. data/test/dummy/node_modules/browserify-aes/populateFixtures.js +25 -0
  244. data/test/dummy/node_modules/browserify-aes/readme.md +18 -0
  245. data/test/dummy/node_modules/browserify-aes/streamCipher.js +25 -0
  246. data/test/dummy/node_modules/browserify-cache-api/CONTRIBUTING.md +9 -0
  247. data/test/dummy/node_modules/browserify-cache-api/README.md +26 -0
  248. data/test/dummy/node_modules/browserify-cache-api/index.js +1 -0
  249. data/test/dummy/node_modules/browserify-cache-api/lib/BrowserifyCache.js +222 -0
  250. data/test/dummy/node_modules/browserify-cache-api/lib/Cache.js +11 -0
  251. data/test/dummy/node_modules/browserify-cache-api/lib/assertExists.js +7 -0
  252. data/test/dummy/node_modules/browserify-cache-api/lib/invalidateCache.js +12 -0
  253. data/test/dummy/node_modules/browserify-cache-api/lib/invalidateDependentFiles.js +28 -0
  254. data/test/dummy/node_modules/browserify-cache-api/lib/invalidateModifiedFiles.js +28 -0
  255. data/test/dummy/node_modules/browserify-cache-api/lib/proxyEvent.js +7 -0
  256. data/test/dummy/node_modules/browserify-cache-api/package.json +92 -0
  257. data/test/dummy/node_modules/browserify-cipher/browser.js +73 -0
  258. data/test/dummy/node_modules/browserify-cipher/index.js +7 -0
  259. data/test/dummy/node_modules/browserify-cipher/package.json +81 -0
  260. data/test/dummy/node_modules/browserify-cipher/readme.md +7 -0
  261. data/test/dummy/node_modules/browserify-cipher/test.js +55 -0
  262. data/test/dummy/node_modules/browserify-des/index.js +43 -0
  263. data/test/dummy/node_modules/browserify-des/modes.js +24 -0
  264. data/test/dummy/node_modules/browserify-des/package.json +80 -0
  265. data/test/dummy/node_modules/browserify-des/readme.md +4 -0
  266. data/test/dummy/node_modules/browserify-des/test.js +48 -0
  267. data/test/dummy/node_modules/browserify-incremental/CONTRIBUTING.md +11 -0
  268. data/test/dummy/node_modules/browserify-incremental/README.md +145 -0
  269. data/test/dummy/node_modules/browserify-incremental/bin/cmd.js +87 -0
  270. data/test/dummy/node_modules/browserify-incremental/index.js +61 -0
  271. data/test/dummy/node_modules/browserify-incremental/node_modules/JSONStream/LICENSE.APACHE2 +15 -0
  272. data/test/dummy/node_modules/browserify-incremental/node_modules/JSONStream/LICENSE.MIT +24 -0
  273. data/test/dummy/node_modules/browserify-incremental/node_modules/JSONStream/examples/all_docs.js +13 -0
  274. data/test/dummy/node_modules/browserify-incremental/node_modules/JSONStream/index.js +193 -0
  275. data/test/dummy/node_modules/browserify-incremental/node_modules/JSONStream/package.json +94 -0
  276. data/test/dummy/node_modules/browserify-incremental/node_modules/JSONStream/readme.markdown +178 -0
  277. data/test/dummy/node_modules/browserify-incremental/node_modules/JSONStream/test/bool.js +41 -0
  278. data/test/dummy/node_modules/browserify-incremental/node_modules/JSONStream/test/browser.js +18 -0
  279. data/test/dummy/node_modules/browserify-incremental/node_modules/JSONStream/test/destroy_missing.js +27 -0
  280. data/test/dummy/node_modules/browserify-incremental/node_modules/JSONStream/test/doubledot1.js +29 -0
  281. data/test/dummy/node_modules/browserify-incremental/node_modules/JSONStream/test/doubledot2.js +29 -0
  282. data/test/dummy/node_modules/browserify-incremental/node_modules/JSONStream/test/empty.js +44 -0
  283. data/test/dummy/node_modules/browserify-incremental/node_modules/JSONStream/test/fixtures/all_npm.json +4030 -0
  284. data/test/dummy/node_modules/browserify-incremental/node_modules/JSONStream/test/fixtures/depth.json +15 -0
  285. data/test/dummy/node_modules/browserify-incremental/node_modules/JSONStream/test/fn.js +39 -0
  286. data/test/dummy/node_modules/browserify-incremental/node_modules/JSONStream/test/gen.js +135 -0
  287. data/test/dummy/node_modules/browserify-incremental/node_modules/JSONStream/test/map.js +40 -0
  288. data/test/dummy/node_modules/browserify-incremental/node_modules/JSONStream/test/multiple_objects.js +42 -0
  289. data/test/dummy/node_modules/browserify-incremental/node_modules/JSONStream/test/multiple_objects_error.js +35 -0
  290. data/test/dummy/node_modules/browserify-incremental/node_modules/JSONStream/test/non_object_roots.js +16 -0
  291. data/test/dummy/node_modules/browserify-incremental/node_modules/JSONStream/test/null.js +28 -0
  292. data/test/dummy/node_modules/browserify-incremental/node_modules/JSONStream/test/parsejson.js +28 -0
  293. data/test/dummy/node_modules/browserify-incremental/node_modules/JSONStream/test/stringify.js +41 -0
  294. data/test/dummy/node_modules/browserify-incremental/node_modules/JSONStream/test/stringify_object.js +47 -0
  295. data/test/dummy/node_modules/browserify-incremental/node_modules/JSONStream/test/test.js +35 -0
  296. data/test/dummy/node_modules/browserify-incremental/node_modules/JSONStream/test/test2.js +29 -0
  297. data/test/dummy/node_modules/browserify-incremental/node_modules/JSONStream/test/two-ways.js +41 -0
  298. data/test/dummy/node_modules/browserify-incremental/node_modules/jsonparse/LICENSE +24 -0
  299. data/test/dummy/node_modules/browserify-incremental/node_modules/jsonparse/README.markdown +11 -0
  300. data/test/dummy/node_modules/browserify-incremental/node_modules/jsonparse/bench.js +26 -0
  301. data/test/dummy/node_modules/browserify-incremental/node_modules/jsonparse/examples/twitterfeed.js +30 -0
  302. data/test/dummy/node_modules/browserify-incremental/node_modules/jsonparse/jsonparse.js +401 -0
  303. data/test/dummy/node_modules/browserify-incremental/node_modules/jsonparse/package.json +84 -0
  304. data/test/dummy/node_modules/browserify-incremental/node_modules/jsonparse/samplejson/basic.json +167 -0
  305. data/test/dummy/node_modules/browserify-incremental/node_modules/jsonparse/samplejson/basic2.json +180 -0
  306. data/test/dummy/node_modules/browserify-incremental/node_modules/jsonparse/test/boundary.js +110 -0
  307. data/test/dummy/node_modules/browserify-incremental/node_modules/jsonparse/test/primitives.js +54 -0
  308. data/test/dummy/node_modules/browserify-incremental/node_modules/jsonparse/test/utf8.js +38 -0
  309. data/test/dummy/node_modules/browserify-incremental/package.json +100 -0
  310. data/test/dummy/node_modules/browserify-rsa/LICENSE +21 -0
  311. data/test/dummy/node_modules/browserify-rsa/index.js +40 -0
  312. data/test/dummy/node_modules/browserify-rsa/package.json +97 -0
  313. data/test/dummy/node_modules/browserify-rsa/readme.md +10 -0
  314. data/test/dummy/node_modules/browserify-rsa/test.js +53 -0
  315. data/test/dummy/node_modules/browserify-sign/LICENSE +13 -0
  316. data/test/dummy/node_modules/browserify-sign/README.md +4 -0
  317. data/test/dummy/node_modules/browserify-sign/algos.js +72 -0
  318. data/test/dummy/node_modules/browserify-sign/algos.json +15 -0
  319. data/test/dummy/node_modules/browserify-sign/browser.js +103 -0
  320. data/test/dummy/node_modules/browserify-sign/curves.js +12 -0
  321. data/test/dummy/node_modules/browserify-sign/ec.param +3 -0
  322. data/test/dummy/node_modules/browserify-sign/index.js +7 -0
  323. data/test/dummy/node_modules/browserify-sign/package.json +100 -0
  324. data/test/dummy/node_modules/browserify-sign/sign.js +185 -0
  325. data/test/dummy/node_modules/browserify-sign/verify.js +103 -0
  326. data/test/dummy/node_modules/browserify-zlib/README.md +22 -0
  327. data/test/dummy/node_modules/browserify-zlib/package.json +94 -0
  328. data/test/dummy/node_modules/browserify-zlib/src/binding.js +236 -0
  329. data/test/dummy/node_modules/browserify-zlib/src/index.js +610 -0
  330. data/test/dummy/node_modules/browserify-zlib/test/fixtures/elipses.txt +1 -0
  331. data/test/dummy/node_modules/browserify-zlib/test/fixtures/empty.txt +1 -0
  332. data/test/dummy/node_modules/browserify-zlib/test/fixtures/person.jpg +0 -0
  333. data/test/dummy/node_modules/browserify-zlib/test/ignored/test-zlib-dictionary-fail.js +48 -0
  334. data/test/dummy/node_modules/browserify-zlib/test/ignored/test-zlib-dictionary.js +95 -0
  335. data/test/dummy/node_modules/browserify-zlib/test/ignored/test-zlib-params.js +33 -0
  336. data/test/dummy/node_modules/browserify-zlib/test/package.json +7 -0
  337. data/test/dummy/node_modules/browserify-zlib/test/test-zlib-close-after-write.js +35 -0
  338. data/test/dummy/node_modules/browserify-zlib/test/test-zlib-convenience-methods.js +70 -0
  339. data/test/dummy/node_modules/browserify-zlib/test/test-zlib-from-string.js +89 -0
  340. data/test/dummy/node_modules/browserify-zlib/test/test-zlib-invalid-input.js +62 -0
  341. data/test/dummy/node_modules/browserify-zlib/test/test-zlib-random-byte-pipes.js +176 -0
  342. data/test/dummy/node_modules/browserify-zlib/test/test-zlib-write-after-flush.js +55 -0
  343. data/test/dummy/node_modules/browserify-zlib/test/test-zlib-zero-byte.js +41 -0
  344. data/test/dummy/node_modules/browserify-zlib/test/test-zlib.js +206 -0
  345. data/test/dummy/node_modules/browserify/LICENSE +63 -0
  346. data/test/dummy/node_modules/browserify/bin/advanced.txt +104 -0
  347. data/test/dummy/node_modules/browserify/bin/args.js +268 -0
  348. data/test/dummy/node_modules/browserify/bin/cmd.js +74 -0
  349. data/test/dummy/node_modules/browserify/bin/usage.txt +34 -0
  350. data/test/dummy/node_modules/browserify/changelog.markdown +1172 -0
  351. data/test/dummy/node_modules/browserify/example/api/browser/bar.js +1 -0
  352. data/test/dummy/node_modules/browserify/example/api/browser/foo.js +5 -0
  353. data/test/dummy/node_modules/browserify/example/api/browser/main.js +2 -0
  354. data/test/dummy/node_modules/browserify/example/api/build.js +4 -0
  355. data/test/dummy/node_modules/browserify/example/multiple_bundles/beep.js +2 -0
  356. data/test/dummy/node_modules/browserify/example/multiple_bundles/boop.js +2 -0
  357. data/test/dummy/node_modules/browserify/example/multiple_bundles/build.sh +4 -0
  358. data/test/dummy/node_modules/browserify/example/multiple_bundles/robot.js +1 -0
  359. data/test/dummy/node_modules/browserify/example/multiple_bundles/static/beep.html +2 -0
  360. data/test/dummy/node_modules/browserify/example/multiple_bundles/static/boop.html +2 -0
  361. data/test/dummy/node_modules/browserify/example/source_maps/build.js +13 -0
  362. data/test/dummy/node_modules/browserify/example/source_maps/build.sh +4 -0
  363. data/test/dummy/node_modules/browserify/example/source_maps/index.html +11 -0
  364. data/test/dummy/node_modules/browserify/example/source_maps/js/build/bundle.js +28 -0
  365. data/test/dummy/node_modules/browserify/example/source_maps/js/foo.js +7 -0
  366. data/test/dummy/node_modules/browserify/example/source_maps/js/main.js +4 -0
  367. data/test/dummy/node_modules/browserify/example/source_maps/js/wunder/bar.js +8 -0
  368. data/test/dummy/node_modules/browserify/index.js +806 -0
  369. data/test/dummy/node_modules/browserify/lib/_empty.js +0 -0
  370. data/test/dummy/node_modules/browserify/lib/builtins.js +38 -0
  371. data/test/dummy/node_modules/browserify/package.json +187 -0
  372. data/test/dummy/node_modules/browserify/readme.markdown +808 -0
  373. data/test/dummy/node_modules/browserify/test/args.js +72 -0
  374. data/test/dummy/node_modules/browserify/test/array.js +74 -0
  375. data/test/dummy/node_modules/browserify/test/array/one.js +1 -0
  376. data/test/dummy/node_modules/browserify/test/array/three.js +1 -0
  377. data/test/dummy/node_modules/browserify/test/array/two.js +1 -0
  378. data/test/dummy/node_modules/browserify/test/backbone.js +23 -0
  379. data/test/dummy/node_modules/browserify/test/bare.js +70 -0
  380. data/test/dummy/node_modules/browserify/test/bare/main.js +7 -0
  381. data/test/dummy/node_modules/browserify/test/bare_shebang.js +37 -0
  382. data/test/dummy/node_modules/browserify/test/bin.js +31 -0
  383. data/test/dummy/node_modules/browserify/test/bin_entry.js +31 -0
  384. data/test/dummy/node_modules/browserify/test/bin_tr_error.js +23 -0
  385. data/test/dummy/node_modules/browserify/test/bin_tr_error/main.js +1 -0
  386. data/test/dummy/node_modules/browserify/test/bin_tr_error/tr.js +12 -0
  387. data/test/dummy/node_modules/browserify/test/bom.js +19 -0
  388. data/test/dummy/node_modules/browserify/test/bom/hello.js +1 -0
  389. data/test/dummy/node_modules/browserify/test/browser_field_file.js +13 -0
  390. data/test/dummy/node_modules/browserify/test/browser_field_file/package.json +5 -0
  391. data/test/dummy/node_modules/browserify/test/browser_field_file/wow.js +1 -0
  392. data/test/dummy/node_modules/browserify/test/browser_field_resolve.js +124 -0
  393. data/test/dummy/node_modules/browserify/test/browser_field_resolve/a/main.js +1 -0
  394. data/test/dummy/node_modules/browserify/test/browser_field_resolve/a/package.json +5 -0
  395. data/test/dummy/node_modules/browserify/test/browser_field_resolve/b/main.js +1 -0
  396. data/test/dummy/node_modules/browserify/test/browser_field_resolve/b/package.json +5 -0
  397. data/test/dummy/node_modules/browserify/test/browser_field_resolve/b/x.js +1 -0
  398. data/test/dummy/node_modules/browserify/test/browser_field_resolve/c/main.js +1 -0
  399. data/test/dummy/node_modules/browserify/test/browser_field_resolve/c/package.json +5 -0
  400. data/test/dummy/node_modules/browserify/test/browser_field_resolve/c/x.js +1 -0
  401. data/test/dummy/node_modules/browserify/test/browser_field_resolve/d/main.js +1 -0
  402. data/test/dummy/node_modules/browserify/test/browser_field_resolve/d/package.json +5 -0
  403. data/test/dummy/node_modules/browserify/test/browser_field_resolve/d/x.js +1 -0
  404. data/test/dummy/node_modules/browserify/test/browser_field_resolve/e/main.js +1 -0
  405. data/test/dummy/node_modules/browserify/test/browser_field_resolve/e/package.json +5 -0
  406. data/test/dummy/node_modules/browserify/test/browser_field_resolve/e/x.js +1 -0
  407. data/test/dummy/node_modules/browserify/test/browser_field_resolve/f/main.js +1 -0
  408. data/test/dummy/node_modules/browserify/test/browser_field_resolve/f/package.json +5 -0
  409. data/test/dummy/node_modules/browserify/test/browser_field_resolve/f/x.js +1 -0
  410. data/test/dummy/node_modules/browserify/test/browser_field_resolve/g/main.js +2 -0
  411. data/test/dummy/node_modules/browserify/test/browser_field_resolve/g/package.json +5 -0
  412. data/test/dummy/node_modules/browserify/test/browser_field_resolve/g/x.js +1 -0
  413. data/test/dummy/node_modules/browserify/test/browser_field_resolve/h/main.js +2 -0
  414. data/test/dummy/node_modules/browserify/test/browser_field_resolve/h/package.json +5 -0
  415. data/test/dummy/node_modules/browserify/test/browser_field_resolve/h/x.js +1 -0
  416. data/test/dummy/node_modules/browserify/test/browser_field_resolve/i/browser.js +1 -0
  417. data/test/dummy/node_modules/browserify/test/browser_field_resolve/i/main.js +2 -0
  418. data/test/dummy/node_modules/browserify/test/browser_field_resolve/i/package.json +5 -0
  419. data/test/dummy/node_modules/browserify/test/browser_field_resolve/i/x.js +1 -0
  420. data/test/dummy/node_modules/browserify/test/browser_field_resolve/j/browser.js +1 -0
  421. data/test/dummy/node_modules/browserify/test/browser_field_resolve/j/main.js +2 -0
  422. data/test/dummy/node_modules/browserify/test/browser_field_resolve/j/package.json +5 -0
  423. data/test/dummy/node_modules/browserify/test/browser_field_resolve/j/x.js +1 -0
  424. data/test/dummy/node_modules/browserify/test/browser_field_resolve/k/main.js +2 -0
  425. data/test/dummy/node_modules/browserify/test/browser_field_resolve/k/node_modules/x/hey.js +1 -0
  426. data/test/dummy/node_modules/browserify/test/browser_field_resolve/k/node_modules/x/package.json +5 -0
  427. data/test/dummy/node_modules/browserify/test/browser_field_resolve/l/main.js +2 -0
  428. data/test/dummy/node_modules/browserify/test/browser_field_resolve/l/node_modules/x/hey.js +1 -0
  429. data/test/dummy/node_modules/browserify/test/browser_field_resolve/l/node_modules/x/package.json +5 -0
  430. data/test/dummy/node_modules/browserify/test/buffer.js +142 -0
  431. data/test/dummy/node_modules/browserify/test/bundle-bundle-external.js +31 -0
  432. data/test/dummy/node_modules/browserify/test/bundle-bundle-external/bar.js +2 -0
  433. data/test/dummy/node_modules/browserify/test/bundle-bundle-external/baz.js +3 -0
  434. data/test/dummy/node_modules/browserify/test/bundle-bundle-external/foo.js +5 -0
  435. data/test/dummy/node_modules/browserify/test/bundle-stream.js +18 -0
  436. data/test/dummy/node_modules/browserify/test/bundle.js +33 -0
  437. data/test/dummy/node_modules/browserify/test/bundle_external.js +26 -0
  438. data/test/dummy/node_modules/browserify/test/bundle_external/boop.js +4 -0
  439. data/test/dummy/node_modules/browserify/test/bundle_external/main.js +4 -0
  440. data/test/dummy/node_modules/browserify/test/bundle_external/robot.js +1 -0
  441. data/test/dummy/node_modules/browserify/test/bundle_external_global.js +24 -0
  442. data/test/dummy/node_modules/browserify/test/bundle_sourcemap.js +32 -0
  443. data/test/dummy/node_modules/browserify/test/catch.js +22 -0
  444. data/test/dummy/node_modules/browserify/test/catch/main.js +1 -0
  445. data/test/dummy/node_modules/browserify/test/circular.js +34 -0
  446. data/test/dummy/node_modules/browserify/test/circular/a.js +3 -0
  447. data/test/dummy/node_modules/browserify/test/circular/b.js +1 -0
  448. data/test/dummy/node_modules/browserify/test/circular/main.js +1 -0
  449. data/test/dummy/node_modules/browserify/test/coffee_bin.js +36 -0
  450. data/test/dummy/node_modules/browserify/test/coffee_bin/main.coffee +2 -0
  451. data/test/dummy/node_modules/browserify/test/coffee_bin/x.coffee +1 -0
  452. data/test/dummy/node_modules/browserify/test/coffeeify.js +19 -0
  453. data/test/dummy/node_modules/browserify/test/coffeeify/main.coffee +2 -0
  454. data/test/dummy/node_modules/browserify/test/comment.js +16 -0
  455. data/test/dummy/node_modules/browserify/test/comment/main.js +2 -0
  456. data/test/dummy/node_modules/browserify/test/constants.js +18 -0
  457. data/test/dummy/node_modules/browserify/test/crypto.js +39 -0
  458. data/test/dummy/node_modules/browserify/test/crypto_ig.js +39 -0
  459. data/test/dummy/node_modules/browserify/test/cycle.js +13 -0
  460. data/test/dummy/node_modules/browserify/test/cycle/README.md +16 -0
  461. data/test/dummy/node_modules/browserify/test/cycle/entry.js +15 -0
  462. data/test/dummy/node_modules/browserify/test/cycle/mod1/a.js +1 -0
  463. data/test/dummy/node_modules/browserify/test/cycle/mod1/b.js +1 -0
  464. data/test/dummy/node_modules/browserify/test/cycle/mod2/a.js +1 -0
  465. data/test/dummy/node_modules/browserify/test/cycle/mod2/b.js +1 -0
  466. data/test/dummy/node_modules/browserify/test/debug_standalone.js +64 -0
  467. data/test/dummy/node_modules/browserify/test/debug_standalone/x.js +1 -0
  468. data/test/dummy/node_modules/browserify/test/dedupe-deps.js +59 -0
  469. data/test/dummy/node_modules/browserify/test/dedupe-nomap.js +64 -0
  470. data/test/dummy/node_modules/browserify/test/delay.js +24 -0
  471. data/test/dummy/node_modules/browserify/test/delay/diverted.js +1 -0
  472. data/test/dummy/node_modules/browserify/test/delay/main.js +1 -0
  473. data/test/dummy/node_modules/browserify/test/dep.js +25 -0
  474. data/test/dummy/node_modules/browserify/test/dollar.js +17 -0
  475. data/test/dummy/node_modules/browserify/test/dollar/dollar/index.js +7 -0
  476. data/test/dummy/node_modules/browserify/test/double_buffer.js +14 -0
  477. data/test/dummy/node_modules/browserify/test/double_buffer/explicit.js +1 -0
  478. data/test/dummy/node_modules/browserify/test/double_buffer/implicit.js +1 -0
  479. data/test/dummy/node_modules/browserify/test/double_buffer/main.js +4 -0
  480. data/test/dummy/node_modules/browserify/test/double_bundle.js +24 -0
  481. data/test/dummy/node_modules/browserify/test/double_bundle_error.js +17 -0
  482. data/test/dummy/node_modules/browserify/test/double_bundle_error/main.js +1 -0
  483. data/test/dummy/node_modules/browserify/test/double_bundle_error/needs_three.js +1 -0
  484. data/test/dummy/node_modules/browserify/test/double_bundle_error/one.js +1 -0
  485. data/test/dummy/node_modules/browserify/test/double_bundle_error/package.json +5 -0
  486. data/test/dummy/node_modules/browserify/test/double_bundle_error/three.js +3 -0
  487. data/test/dummy/node_modules/browserify/test/double_bundle_error/two.js +1 -0
  488. data/test/dummy/node_modules/browserify/test/double_bundle_json.js +37 -0
  489. data/test/dummy/node_modules/browserify/test/double_bundle_json/a.json +1 -0
  490. data/test/dummy/node_modules/browserify/test/double_bundle_json/b.json +1 -0
  491. data/test/dummy/node_modules/browserify/test/double_bundle_json/index.js +5 -0
  492. data/test/dummy/node_modules/browserify/test/double_bundle_parallel.js +33 -0
  493. data/test/dummy/node_modules/browserify/test/double_bundle_parallel_cache.js +35 -0
  494. data/test/dummy/node_modules/browserify/test/dup/foo-dup.js +4 -0
  495. data/test/dummy/node_modules/browserify/test/dup/foo.js +4 -0
  496. data/test/dummy/node_modules/browserify/test/dup/index.js +5 -0
  497. data/test/dummy/node_modules/browserify/test/entry.js +42 -0
  498. data/test/dummy/node_modules/browserify/test/entry/main.js +1 -0
  499. data/test/dummy/node_modules/browserify/test/entry/needs_three.js +1 -0
  500. data/test/dummy/node_modules/browserify/test/entry/one.js +1 -0
  501. data/test/dummy/node_modules/browserify/test/entry/package.json +5 -0
  502. data/test/dummy/node_modules/browserify/test/entry/three.js +1 -0
  503. data/test/dummy/node_modules/browserify/test/entry/two.js +1 -0
  504. data/test/dummy/node_modules/browserify/test/entry_exec.js +15 -0
  505. data/test/dummy/node_modules/browserify/test/entry_exec/fail.js +1 -0
  506. data/test/dummy/node_modules/browserify/test/entry_exec/main.js +1 -0
  507. data/test/dummy/node_modules/browserify/test/entry_expose.js +19 -0
  508. data/test/dummy/node_modules/browserify/test/entry_expose/main.js +2 -0
  509. data/test/dummy/node_modules/browserify/test/entry_relative.js +44 -0
  510. data/test/dummy/node_modules/browserify/test/error_code.js +24 -0
  511. data/test/dummy/node_modules/browserify/test/error_code/src.js +2 -0
  512. data/test/dummy/node_modules/browserify/test/export.js +35 -0
  513. data/test/dummy/node_modules/browserify/test/export/entry.js +1 -0
  514. data/test/dummy/node_modules/browserify/test/external.js +20 -0
  515. data/test/dummy/node_modules/browserify/test/external/main.js +2 -0
  516. data/test/dummy/node_modules/browserify/test/external/x.js +3 -0
  517. data/test/dummy/node_modules/browserify/test/external_args/main.js +10 -0
  518. data/test/dummy/node_modules/browserify/test/external_shim.js +27 -0
  519. data/test/dummy/node_modules/browserify/test/external_shim/bundle1.js +1 -0
  520. data/test/dummy/node_modules/browserify/test/external_shim/bundle2.js +1 -0
  521. data/test/dummy/node_modules/browserify/test/external_shim/package.json +5 -0
  522. data/test/dummy/node_modules/browserify/test/external_shim/shim.js +0 -0
  523. data/test/dummy/node_modules/browserify/test/externalize.js +59 -0
  524. data/test/dummy/node_modules/browserify/test/externalize/beep.js +2 -0
  525. data/test/dummy/node_modules/browserify/test/externalize/boop.js +2 -0
  526. data/test/dummy/node_modules/browserify/test/externalize/robot.js +1 -0
  527. data/test/dummy/node_modules/browserify/test/fake.js +15 -0
  528. data/test/dummy/node_modules/browserify/test/fake/fake_fs.js +1 -0
  529. data/test/dummy/node_modules/browserify/test/fake/main.js +2 -0
  530. data/test/dummy/node_modules/browserify/test/field.js +72 -0
  531. data/test/dummy/node_modules/browserify/test/field/miss.js +1 -0
  532. data/test/dummy/node_modules/browserify/test/field/node_modules/z-miss/browser.js +1 -0
  533. data/test/dummy/node_modules/browserify/test/field/node_modules/z-miss/main.js +1 -0
  534. data/test/dummy/node_modules/browserify/test/field/node_modules/z-miss/package.json +4 -0
  535. data/test/dummy/node_modules/browserify/test/field/node_modules/z-object/browser.js +1 -0
  536. data/test/dummy/node_modules/browserify/test/field/node_modules/z-object/main.js +1 -0
  537. data/test/dummy/node_modules/browserify/test/field/node_modules/z-object/package.json +4 -0
  538. data/test/dummy/node_modules/browserify/test/field/node_modules/z-string/browser.js +1 -0
  539. data/test/dummy/node_modules/browserify/test/field/node_modules/z-string/main.js +1 -0
  540. data/test/dummy/node_modules/browserify/test/field/node_modules/z-string/package.json +4 -0
  541. data/test/dummy/node_modules/browserify/test/field/node_modules/z-sub/browser/a.js +1 -0
  542. data/test/dummy/node_modules/browserify/test/field/node_modules/z-sub/browser/b.js +1 -0
  543. data/test/dummy/node_modules/browserify/test/field/node_modules/z-sub/main.js +1 -0
  544. data/test/dummy/node_modules/browserify/test/field/node_modules/z-sub/package.json +4 -0
  545. data/test/dummy/node_modules/browserify/test/field/object.js +1 -0
  546. data/test/dummy/node_modules/browserify/test/field/string.js +1 -0
  547. data/test/dummy/node_modules/browserify/test/field/sub.js +1 -0
  548. data/test/dummy/node_modules/browserify/test/file_event.js +33 -0
  549. data/test/dummy/node_modules/browserify/test/five_bundle.js +30 -0
  550. data/test/dummy/node_modules/browserify/test/full_paths.js +58 -0
  551. data/test/dummy/node_modules/browserify/test/glob.js +29 -0
  552. data/test/dummy/node_modules/browserify/test/glob/a.js +6 -0
  553. data/test/dummy/node_modules/browserify/test/glob/b.js +5 -0
  554. data/test/dummy/node_modules/browserify/test/glob/lib/z.js +1 -0
  555. data/test/dummy/node_modules/browserify/test/glob/vendor/x.js +1 -0
  556. data/test/dummy/node_modules/browserify/test/glob/vendor/y.js +1 -0
  557. data/test/dummy/node_modules/browserify/test/global.js +90 -0
  558. data/test/dummy/node_modules/browserify/test/global/buffer.js +2 -0
  559. data/test/dummy/node_modules/browserify/test/global/filename.js +2 -0
  560. data/test/dummy/node_modules/browserify/test/global/main.js +2 -0
  561. data/test/dummy/node_modules/browserify/test/global/node_modules/aaa/index.js +2 -0
  562. data/test/dummy/node_modules/browserify/test/global/node_modules/robot/index.js +1 -0
  563. data/test/dummy/node_modules/browserify/test/global/node_modules/robot/lib/beep.js +2 -0
  564. data/test/dummy/node_modules/browserify/test/global/tick.js +3 -0
  565. data/test/dummy/node_modules/browserify/test/global_coffeeify.js +19 -0
  566. data/test/dummy/node_modules/browserify/test/global_noparse.js +101 -0
  567. data/test/dummy/node_modules/browserify/test/global_recorder.js +22 -0
  568. data/test/dummy/node_modules/browserify/test/global_recorder/main.js +1 -0
  569. data/test/dummy/node_modules/browserify/test/hash.js +15 -0
  570. data/test/dummy/node_modules/browserify/test/hash/foo/other.js +1 -0
  571. data/test/dummy/node_modules/browserify/test/hash/foo/two.js +2 -0
  572. data/test/dummy/node_modules/browserify/test/hash/main.js +2 -0
  573. data/test/dummy/node_modules/browserify/test/hash/one.js +2 -0
  574. data/test/dummy/node_modules/browserify/test/hash/other.js +1 -0
  575. data/test/dummy/node_modules/browserify/test/hash_instance_context.js +25 -0
  576. data/test/dummy/node_modules/browserify/test/hash_instance_context/main.js +17 -0
  577. data/test/dummy/node_modules/browserify/test/hash_instance_context/one/dir/f.js +3 -0
  578. data/test/dummy/node_modules/browserify/test/hash_instance_context/one/dir/g.js +2 -0
  579. data/test/dummy/node_modules/browserify/test/hash_instance_context/one/f.js +3 -0
  580. data/test/dummy/node_modules/browserify/test/hash_instance_context/one/g.js +2 -0
  581. data/test/dummy/node_modules/browserify/test/hash_instance_context/three/dir/f.js +3 -0
  582. data/test/dummy/node_modules/browserify/test/hash_instance_context/three/dir/g.js +2 -0
  583. data/test/dummy/node_modules/browserify/test/hash_instance_context/three/dir/h.js +2 -0
  584. data/test/dummy/node_modules/browserify/test/hash_instance_context/three/f.js +3 -0
  585. data/test/dummy/node_modules/browserify/test/hash_instance_context/three/g.js +2 -0
  586. data/test/dummy/node_modules/browserify/test/hash_instance_context/three/h.js +2 -0
  587. data/test/dummy/node_modules/browserify/test/hash_instance_context/two/dir/f.js +3 -0
  588. data/test/dummy/node_modules/browserify/test/hash_instance_context/two/dir/g.js +2 -0
  589. data/test/dummy/node_modules/browserify/test/hash_instance_context/two/dir/h.js +2 -0
  590. data/test/dummy/node_modules/browserify/test/hash_instance_context/two/f.js +3 -0
  591. data/test/dummy/node_modules/browserify/test/hash_instance_context/two/g.js +2 -0
  592. data/test/dummy/node_modules/browserify/test/hash_instance_context/two/h.js +2 -0
  593. data/test/dummy/node_modules/browserify/test/identical.js +19 -0
  594. data/test/dummy/node_modules/browserify/test/identical/main.js +6 -0
  595. data/test/dummy/node_modules/browserify/test/identical/x.js +2 -0
  596. data/test/dummy/node_modules/browserify/test/identical/y.js +2 -0
  597. data/test/dummy/node_modules/browserify/test/identical_different.js +19 -0
  598. data/test/dummy/node_modules/browserify/test/identical_different/main.js +6 -0
  599. data/test/dummy/node_modules/browserify/test/identical_different/node_modules/op/index.js +3 -0
  600. data/test/dummy/node_modules/browserify/test/identical_different/wow/node_modules/op/index.js +3 -0
  601. data/test/dummy/node_modules/browserify/test/identical_different/wow/y.js +3 -0
  602. data/test/dummy/node_modules/browserify/test/identical_different/x.js +3 -0
  603. data/test/dummy/node_modules/browserify/test/ignore.js +72 -0
  604. data/test/dummy/node_modules/browserify/test/ignore/by-id.js +3 -0
  605. data/test/dummy/node_modules/browserify/test/ignore/by-relative.js +5 -0
  606. data/test/dummy/node_modules/browserify/test/ignore/double-skip.js +2 -0
  607. data/test/dummy/node_modules/browserify/test/ignore/double-skip/index.js +1 -0
  608. data/test/dummy/node_modules/browserify/test/ignore/double-skip/skip.js +5 -0
  609. data/test/dummy/node_modules/browserify/test/ignore/ignored/skip.js +1 -0
  610. data/test/dummy/node_modules/browserify/test/ignore/main.js +1 -0
  611. data/test/dummy/node_modules/browserify/test/ignore/relative/index.js +1 -0
  612. data/test/dummy/node_modules/browserify/test/ignore/skip.js +1 -0
  613. data/test/dummy/node_modules/browserify/test/ignore_browser_field.js +21 -0
  614. data/test/dummy/node_modules/browserify/test/ignore_browser_field/main.js +2 -0
  615. data/test/dummy/node_modules/browserify/test/ignore_browser_field/node_modules/a/browser.js +1 -0
  616. data/test/dummy/node_modules/browserify/test/ignore_browser_field/node_modules/a/main.js +1 -0
  617. data/test/dummy/node_modules/browserify/test/ignore_browser_field/node_modules/a/package.json +6 -0
  618. data/test/dummy/node_modules/browserify/test/ignore_browser_field/node_modules/b/browser-x.js +1 -0
  619. data/test/dummy/node_modules/browserify/test/ignore_browser_field/node_modules/b/main.js +1 -0
  620. data/test/dummy/node_modules/browserify/test/ignore_browser_field/node_modules/b/package.json +8 -0
  621. data/test/dummy/node_modules/browserify/test/ignore_browser_field/node_modules/b/x.js +1 -0
  622. data/test/dummy/node_modules/browserify/test/ignore_missing.js +41 -0
  623. data/test/dummy/node_modules/browserify/test/ignore_missing/main.js +1 -0
  624. data/test/dummy/node_modules/browserify/test/json.js +44 -0
  625. data/test/dummy/node_modules/browserify/test/json/beep.json +4 -0
  626. data/test/dummy/node_modules/browserify/test/json/evil-chars.json +3 -0
  627. data/test/dummy/node_modules/browserify/test/json/evil.js +2 -0
  628. data/test/dummy/node_modules/browserify/test/json/main.js +2 -0
  629. data/test/dummy/node_modules/browserify/test/leak.js +57 -0
  630. data/test/dummy/node_modules/browserify/test/maxlisteners.js +13 -0
  631. data/test/dummy/node_modules/browserify/test/maxlisteners/main.js +3 -0
  632. data/test/dummy/node_modules/browserify/test/multi_bundle.js +86 -0
  633. data/test/dummy/node_modules/browserify/test/multi_bundle/_prelude.js +1 -0
  634. data/test/dummy/node_modules/browserify/test/multi_bundle/a.js +3 -0
  635. data/test/dummy/node_modules/browserify/test/multi_bundle/b.js +5 -0
  636. data/test/dummy/node_modules/browserify/test/multi_bundle/c.js +4 -0
  637. data/test/dummy/node_modules/browserify/test/multi_bundle_unique.js +56 -0
  638. data/test/dummy/node_modules/browserify/test/multi_entry.js +121 -0
  639. data/test/dummy/node_modules/browserify/test/multi_entry/a.js +2 -0
  640. data/test/dummy/node_modules/browserify/test/multi_entry/b.js +2 -0
  641. data/test/dummy/node_modules/browserify/test/multi_entry/c.js +2 -0
  642. data/test/dummy/node_modules/browserify/test/multi_entry_cross_require.js +92 -0
  643. data/test/dummy/node_modules/browserify/test/multi_entry_cross_require/a.js +8 -0
  644. data/test/dummy/node_modules/browserify/test/multi_entry_cross_require/c.js +7 -0
  645. data/test/dummy/node_modules/browserify/test/multi_entry_cross_require/lib/b.js +5 -0
  646. data/test/dummy/node_modules/browserify/test/multi_require.js +18 -0
  647. data/test/dummy/node_modules/browserify/test/multi_require/a.js +3 -0
  648. data/test/dummy/node_modules/browserify/test/multi_require/main.js +4 -0
  649. data/test/dummy/node_modules/browserify/test/multi_symlink.js +13 -0
  650. data/test/dummy/node_modules/browserify/test/multi_symlink/main.js +2 -0
  651. data/test/dummy/node_modules/browserify/test/multi_symlink/x.js +1 -0
  652. data/test/dummy/node_modules/browserify/test/no_builtins.js +63 -0
  653. data/test/dummy/node_modules/browserify/test/no_builtins/extra/fs.js +1 -0
  654. data/test/dummy/node_modules/browserify/test/no_builtins/extra/tls.js +1 -0
  655. data/test/dummy/node_modules/browserify/test/no_builtins/main.js +4 -0
  656. data/test/dummy/node_modules/browserify/test/no_builtins/x.txt +1 -0
  657. data/test/dummy/node_modules/browserify/test/node_modules/beep/index.js +1 -0
  658. data/test/dummy/node_modules/browserify/test/node_modules/plugin-foo/index.js +9 -0
  659. data/test/dummy/node_modules/browserify/test/node_modules/tr/index.js +8 -0
  660. data/test/dummy/node_modules/browserify/test/noparse.js +31 -0
  661. data/test/dummy/node_modules/browserify/test/noparse/a.js +4 -0
  662. data/test/dummy/node_modules/browserify/test/noparse/b.js +5 -0
  663. data/test/dummy/node_modules/browserify/test/noparse/dir1/1.js +4 -0
  664. data/test/dummy/node_modules/browserify/test/noparse/dir1/dir2/2.js +3 -0
  665. data/test/dummy/node_modules/browserify/test/noparse/node_modules/robot/lib/beep.js +4 -0
  666. data/test/dummy/node_modules/browserify/test/noparse/node_modules/robot/lib/boop.js +3 -0
  667. data/test/dummy/node_modules/browserify/test/noparse/node_modules/robot/main.js +4 -0
  668. data/test/dummy/node_modules/browserify/test/noparse/node_modules/robot/package.json +3 -0
  669. data/test/dummy/node_modules/browserify/test/pack.js +33 -0
  670. data/test/dummy/node_modules/browserify/test/paths.js +32 -0
  671. data/test/dummy/node_modules/browserify/test/paths/main.js +3 -0
  672. data/test/dummy/node_modules/browserify/test/paths/x/aaa/index.js +1 -0
  673. data/test/dummy/node_modules/browserify/test/paths/x/ccc/index.js +1 -0
  674. data/test/dummy/node_modules/browserify/test/paths/y/bbb/index.js +1 -0
  675. data/test/dummy/node_modules/browserify/test/paths/y/ccc/index.js +1 -0
  676. data/test/dummy/node_modules/browserify/test/paths_transform.js +76 -0
  677. data/test/dummy/node_modules/browserify/test/pipeline_deps.js +22 -0
  678. data/test/dummy/node_modules/browserify/test/pipeline_deps/bar.js +3 -0
  679. data/test/dummy/node_modules/browserify/test/pipeline_deps/foo.js +5 -0
  680. data/test/dummy/node_modules/browserify/test/pipeline_deps/main.js +2 -0
  681. data/test/dummy/node_modules/browserify/test/pipeline_deps/xyz.js +2 -0
  682. data/test/dummy/node_modules/browserify/test/pkg.js +20 -0
  683. data/test/dummy/node_modules/browserify/test/pkg/main.js +1 -0
  684. data/test/dummy/node_modules/browserify/test/pkg/package.json +1 -0
  685. data/test/dummy/node_modules/browserify/test/pkg_event.js +31 -0
  686. data/test/dummy/node_modules/browserify/test/pkg_event/main.js +1 -0
  687. data/test/dummy/node_modules/browserify/test/pkg_event/package.json +3 -0
  688. data/test/dummy/node_modules/browserify/test/plugin.js +28 -0
  689. data/test/dummy/node_modules/browserify/test/plugin/main.js +1 -0
  690. data/test/dummy/node_modules/browserify/test/process.js +21 -0
  691. data/test/dummy/node_modules/browserify/test/process/main.js +3 -0
  692. data/test/dummy/node_modules/browserify/test/process/one.js +1 -0
  693. data/test/dummy/node_modules/browserify/test/process/two.js +1 -0
  694. data/test/dummy/node_modules/browserify/test/relative_dedupe.js +17 -0
  695. data/test/dummy/node_modules/browserify/test/relative_dedupe/a/a.js +3 -0
  696. data/test/dummy/node_modules/browserify/test/relative_dedupe/a/b.js +3 -0
  697. data/test/dummy/node_modules/browserify/test/relative_dedupe/a/index.js +4 -0
  698. data/test/dummy/node_modules/browserify/test/relative_dedupe/b/a.js +3 -0
  699. data/test/dummy/node_modules/browserify/test/relative_dedupe/b/b.js +3 -0
  700. data/test/dummy/node_modules/browserify/test/relative_dedupe/b/index.js +4 -0
  701. data/test/dummy/node_modules/browserify/test/relative_dedupe/index.js +4 -0
  702. data/test/dummy/node_modules/browserify/test/relative_dedupe/main.js +5 -0
  703. data/test/dummy/node_modules/browserify/test/require_cache.js +19 -0
  704. data/test/dummy/node_modules/browserify/test/require_expose.js +53 -0
  705. data/test/dummy/node_modules/browserify/test/require_expose/main.js +1 -0
  706. data/test/dummy/node_modules/browserify/test/require_expose/some_dep.js +1 -0
  707. data/test/dummy/node_modules/browserify/test/reset.js +31 -0
  708. data/test/dummy/node_modules/browserify/test/resolve_exposed.js +20 -0
  709. data/test/dummy/node_modules/browserify/test/resolve_exposed/main.js +2 -0
  710. data/test/dummy/node_modules/browserify/test/resolve_exposed/x.js +1 -0
  711. data/test/dummy/node_modules/browserify/test/retarget.js +25 -0
  712. data/test/dummy/node_modules/browserify/test/reverse_multi_bundle.js +47 -0
  713. data/test/dummy/node_modules/browserify/test/reverse_multi_bundle/app.js +22 -0
  714. data/test/dummy/node_modules/browserify/test/reverse_multi_bundle/arbitrary.js +6 -0
  715. data/test/dummy/node_modules/browserify/test/reverse_multi_bundle/lazy.js +9 -0
  716. data/test/dummy/node_modules/browserify/test/reverse_multi_bundle/shared.js +6 -0
  717. data/test/dummy/node_modules/browserify/test/shared_symlink.js +16 -0
  718. data/test/dummy/node_modules/browserify/test/shared_symlink/app/index.js +1 -0
  719. data/test/dummy/node_modules/browserify/test/shared_symlink/app/node_modules/foo/index.js +1 -0
  720. data/test/dummy/node_modules/browserify/test/shared_symlink/main.js +1 -0
  721. data/test/dummy/node_modules/browserify/test/shared_symlink/shared/index.js +1 -0
  722. data/test/dummy/node_modules/browserify/test/shebang.js +11 -0
  723. data/test/dummy/node_modules/browserify/test/shebang/foo.js +2 -0
  724. data/test/dummy/node_modules/browserify/test/shebang/main.js +4 -0
  725. data/test/dummy/node_modules/browserify/test/standalone.js +85 -0
  726. data/test/dummy/node_modules/browserify/test/standalone/main.js +3 -0
  727. data/test/dummy/node_modules/browserify/test/standalone/one.js +1 -0
  728. data/test/dummy/node_modules/browserify/test/standalone/two.js +1 -0
  729. data/test/dummy/node_modules/browserify/test/standalone_events.js +19 -0
  730. data/test/dummy/node_modules/browserify/test/standalone_sourcemap.js +55 -0
  731. data/test/dummy/node_modules/browserify/test/stdin.js +35 -0
  732. data/test/dummy/node_modules/browserify/test/stream.js +15 -0
  733. data/test/dummy/node_modules/browserify/test/stream/bar.js +1 -0
  734. data/test/dummy/node_modules/browserify/test/stream/foo.js +1 -0
  735. data/test/dummy/node_modules/browserify/test/stream/main.js +2 -0
  736. data/test/dummy/node_modules/browserify/test/stream_file.js +29 -0
  737. data/test/dummy/node_modules/browserify/test/subdep.js +16 -0
  738. data/test/dummy/node_modules/browserify/test/subdep/index.js +1 -0
  739. data/test/dummy/node_modules/browserify/test/subdep/package.json +6 -0
  740. data/test/dummy/node_modules/browserify/test/symlink_dedupe.js +16 -0
  741. data/test/dummy/node_modules/browserify/test/symlink_dedupe/main.js +6 -0
  742. data/test/dummy/node_modules/browserify/test/symlink_dedupe/one/f.js +3 -0
  743. data/test/dummy/node_modules/browserify/test/symlink_dedupe/one/g.js +2 -0
  744. data/test/dummy/node_modules/browserify/test/syntax_cache.js +47 -0
  745. data/test/dummy/node_modules/browserify/test/syntax_cache/invalid.js +2 -0
  746. data/test/dummy/node_modules/browserify/test/syntax_cache/valid.js +2 -0
  747. data/test/dummy/node_modules/browserify/test/tr.js +28 -0
  748. data/test/dummy/node_modules/browserify/test/tr/f.js +2 -0
  749. data/test/dummy/node_modules/browserify/test/tr/main.js +9 -0
  750. data/test/dummy/node_modules/browserify/test/tr/package.json +5 -0
  751. data/test/dummy/node_modules/browserify/test/tr/subdir/g.js +1 -0
  752. data/test/dummy/node_modules/browserify/test/tr_args.js +24 -0
  753. data/test/dummy/node_modules/browserify/test/tr_args/main.js +1 -0
  754. data/test/dummy/node_modules/browserify/test/tr_args/tr.js +12 -0
  755. data/test/dummy/node_modules/browserify/test/tr_error.js +33 -0
  756. data/test/dummy/node_modules/browserify/test/tr_flags.js +36 -0
  757. data/test/dummy/node_modules/browserify/test/tr_global.js +17 -0
  758. data/test/dummy/node_modules/browserify/test/tr_global/main.js +1 -0
  759. data/test/dummy/node_modules/browserify/test/tr_global/node_modules/tr/index.js +8 -0
  760. data/test/dummy/node_modules/browserify/test/tr_global/node_modules/x/index.js +1 -0
  761. data/test/dummy/node_modules/browserify/test/tr_global/node_modules/x/node_modules/tr/index.js +8 -0
  762. data/test/dummy/node_modules/browserify/test/tr_no_entry.js +20 -0
  763. data/test/dummy/node_modules/browserify/test/tr_no_entry/main.js +1 -0
  764. data/test/dummy/node_modules/browserify/test/tr_once.js +21 -0
  765. data/test/dummy/node_modules/browserify/test/tr_once/main.js +1 -0
  766. data/test/dummy/node_modules/browserify/test/tr_order.js +23 -0
  767. data/test/dummy/node_modules/browserify/test/tr_order/replace_aaa.js +10 -0
  768. data/test/dummy/node_modules/browserify/test/tr_order/replace_bbb.js +11 -0
  769. data/test/dummy/node_modules/browserify/test/tr_symlink.js +27 -0
  770. data/test/dummy/node_modules/browserify/test/tr_symlink/a-module/index.js +1 -0
  771. data/test/dummy/node_modules/browserify/test/tr_symlink/app/main.js +6 -0
  772. data/test/dummy/node_modules/browserify/test/tr_symlink/app/package.json +5 -0
  773. data/test/dummy/node_modules/browserify/test/tr_symlink/b-module/ext.js +1 -0
  774. data/test/dummy/node_modules/browserify/test/tr_symlink/b-module/index.js +2 -0
  775. data/test/dummy/node_modules/browserify/test/unicode.js +19 -0
  776. data/test/dummy/node_modules/browserify/test/unicode/main.js +1 -0
  777. data/test/dummy/node_modules/browserify/test/unicode/one.js +1 -0
  778. data/test/dummy/node_modules/browserify/test/unicode/two.js +1 -0
  779. data/test/dummy/node_modules/browserify/test/util.js +62 -0
  780. data/test/dummy/node_modules/browserify/test/yield.js +20 -0
  781. data/test/dummy/node_modules/browserify/test/yield/f.js +5 -0
  782. data/test/dummy/node_modules/browserify/test/yield/main.js +4 -0
  783. data/test/dummy/node_modules/buffer-shims/index.js +108 -0
  784. data/test/dummy/node_modules/buffer-shims/license.md +19 -0
  785. data/test/dummy/node_modules/buffer-shims/package.json +77 -0
  786. data/test/dummy/node_modules/buffer-shims/readme.md +21 -0
  787. data/test/dummy/node_modules/buffer-xor/LICENSE +21 -0
  788. data/test/dummy/node_modules/buffer-xor/README.md +41 -0
  789. data/test/dummy/node_modules/buffer-xor/index.js +10 -0
  790. data/test/dummy/node_modules/buffer-xor/inline.js +1 -0
  791. data/test/dummy/node_modules/buffer-xor/inplace.js +9 -0
  792. data/test/dummy/node_modules/buffer-xor/package.json +88 -0
  793. data/test/dummy/node_modules/buffer-xor/test/fixtures.json +23 -0
  794. data/test/dummy/node_modules/buffer-xor/test/index.js +38 -0
  795. data/test/dummy/node_modules/buffer/LICENSE +21 -0
  796. data/test/dummy/node_modules/buffer/README.md +378 -0
  797. data/test/dummy/node_modules/buffer/bin/download-node-tests.js +106 -0
  798. data/test/dummy/node_modules/buffer/bin/test.js +41 -0
  799. data/test/dummy/node_modules/buffer/bin/zuul-es5.yml +14 -0
  800. data/test/dummy/node_modules/buffer/bin/zuul-es6.yml +6 -0
  801. data/test/dummy/node_modules/buffer/index.js +1787 -0
  802. data/test/dummy/node_modules/buffer/package.json +134 -0
  803. data/test/dummy/node_modules/buffer/test/_polyfill.js +150 -0
  804. data/test/dummy/node_modules/buffer/test/base64.js +47 -0
  805. data/test/dummy/node_modules/buffer/test/basic.js +85 -0
  806. data/test/dummy/node_modules/buffer/test/compare.js +59 -0
  807. data/test/dummy/node_modules/buffer/test/constructor.js +193 -0
  808. data/test/dummy/node_modules/buffer/test/from-string.js +132 -0
  809. data/test/dummy/node_modules/buffer/test/is-buffer.js +22 -0
  810. data/test/dummy/node_modules/buffer/test/methods.js +127 -0
  811. data/test/dummy/node_modules/buffer/test/node/test-buffer-alloc.js +1484 -0
  812. data/test/dummy/node_modules/buffer/test/node/test-buffer-arraybuffer.js +112 -0
  813. data/test/dummy/node_modules/buffer/test/node/test-buffer-ascii.js +28 -0
  814. data/test/dummy/node_modules/buffer/test/node/test-buffer-bad-overload.js +18 -0
  815. data/test/dummy/node_modules/buffer/test/node/test-buffer-badhex.js +87 -0
  816. data/test/dummy/node_modules/buffer/test/node/test-buffer-bytelength.js +90 -0
  817. data/test/dummy/node_modules/buffer/test/node/test-buffer-compare-offset.js +66 -0
  818. data/test/dummy/node_modules/buffer/test/node/test-buffer-concat.js +40 -0
  819. data/test/dummy/node_modules/buffer/test/node/test-buffer-fill.js +272 -0
  820. data/test/dummy/node_modules/buffer/test/node/test-buffer-includes.js +305 -0
  821. data/test/dummy/node_modules/buffer/test/node/test-buffer-indexof.js +523 -0
  822. data/test/dummy/node_modules/buffer/test/node/test-buffer-inheritance.js +42 -0
  823. data/test/dummy/node_modules/buffer/test/node/test-buffer-inspect.js +41 -0
  824. data/test/dummy/node_modules/buffer/test/node/test-buffer-iterator.js +65 -0
  825. data/test/dummy/node_modules/buffer/test/node/test-buffer-safe-unsafe.js +27 -0
  826. data/test/dummy/node_modules/buffer/test/node/test-buffer-slow.js +63 -0
  827. data/test/dummy/node_modules/buffer/test/node/test-buffer-swap.js +141 -0
  828. data/test/dummy/node_modules/buffer/test/node/test-buffer-zero-fill-cli.js +35 -0
  829. data/test/dummy/node_modules/buffer/test/node/test-buffer-zero-fill-reset.js +22 -0
  830. data/test/dummy/node_modules/buffer/test/node/test-buffer.js +1527 -0
  831. data/test/dummy/node_modules/buffer/test/slice.js +37 -0
  832. data/test/dummy/node_modules/buffer/test/static.js +17 -0
  833. data/test/dummy/node_modules/buffer/test/to-string.js +233 -0
  834. data/test/dummy/node_modules/buffer/test/write.js +131 -0
  835. data/test/dummy/node_modules/buffer/test/write_infinity.js +45 -0
  836. data/test/dummy/node_modules/builtin-status-codes/browser.js +63 -0
  837. data/test/dummy/node_modules/builtin-status-codes/build.js +8 -0
  838. data/test/dummy/node_modules/builtin-status-codes/index.js +3 -0
  839. data/test/dummy/node_modules/builtin-status-codes/license +21 -0
  840. data/test/dummy/node_modules/builtin-status-codes/package.json +95 -0
  841. data/test/dummy/node_modules/builtin-status-codes/readme.md +31 -0
  842. data/test/dummy/node_modules/cipher-base/index.js +90 -0
  843. data/test/dummy/node_modules/cipher-base/package.json +83 -0
  844. data/test/dummy/node_modules/cipher-base/readme.md +17 -0
  845. data/test/dummy/node_modules/cipher-base/test.js +108 -0
  846. data/test/dummy/node_modules/combine-source-map/LICENSE +23 -0
  847. data/test/dummy/node_modules/combine-source-map/README.md +111 -0
  848. data/test/dummy/node_modules/combine-source-map/example/two-files-short.js +26 -0
  849. data/test/dummy/node_modules/combine-source-map/example/two-files.js +46 -0
  850. data/test/dummy/node_modules/combine-source-map/index.js +153 -0
  851. data/test/dummy/node_modules/combine-source-map/lib/mappings-from-map.js +30 -0
  852. data/test/dummy/node_modules/combine-source-map/lib/path-is-absolute.js +20 -0
  853. data/test/dummy/node_modules/combine-source-map/lib/path-is-absolute.license +21 -0
  854. data/test/dummy/node_modules/combine-source-map/package.json +102 -0
  855. data/test/dummy/node_modules/combine-source-map/test/combine-source-map.js +347 -0
  856. data/test/dummy/node_modules/concat-map/LICENSE +18 -0
  857. data/test/dummy/node_modules/concat-map/README.markdown +62 -0
  858. data/test/dummy/node_modules/concat-map/example/map.js +6 -0
  859. data/test/dummy/node_modules/concat-map/index.js +13 -0
  860. data/test/dummy/node_modules/concat-map/package.json +109 -0
  861. data/test/dummy/node_modules/concat-map/test/map.js +39 -0
  862. data/test/dummy/node_modules/concat-stream/LICENSE +24 -0
  863. data/test/dummy/node_modules/concat-stream/index.js +136 -0
  864. data/test/dummy/node_modules/concat-stream/node_modules/readable-stream/LICENSE +18 -0
  865. data/test/dummy/node_modules/concat-stream/node_modules/readable-stream/README.md +36 -0
  866. data/test/dummy/node_modules/concat-stream/node_modules/readable-stream/doc/stream.markdown +1760 -0
  867. data/test/dummy/node_modules/concat-stream/node_modules/readable-stream/doc/wg-meetings/2015-01-30.md +60 -0
  868. data/test/dummy/node_modules/concat-stream/node_modules/readable-stream/duplex.js +1 -0
  869. data/test/dummy/node_modules/concat-stream/node_modules/readable-stream/lib/_stream_duplex.js +75 -0
  870. data/test/dummy/node_modules/concat-stream/node_modules/readable-stream/lib/_stream_passthrough.js +26 -0
  871. data/test/dummy/node_modules/concat-stream/node_modules/readable-stream/lib/_stream_readable.js +880 -0
  872. data/test/dummy/node_modules/concat-stream/node_modules/readable-stream/lib/_stream_transform.js +180 -0
  873. data/test/dummy/node_modules/concat-stream/node_modules/readable-stream/lib/_stream_writable.js +516 -0
  874. data/test/dummy/node_modules/concat-stream/node_modules/readable-stream/package.json +105 -0
  875. data/test/dummy/node_modules/concat-stream/node_modules/readable-stream/passthrough.js +1 -0
  876. data/test/dummy/node_modules/concat-stream/node_modules/readable-stream/readable.js +12 -0
  877. data/test/dummy/node_modules/concat-stream/node_modules/readable-stream/transform.js +1 -0
  878. data/test/dummy/node_modules/concat-stream/node_modules/readable-stream/writable.js +1 -0
  879. data/test/dummy/node_modules/concat-stream/package.json +115 -0
  880. data/test/dummy/node_modules/concat-stream/readme.md +100 -0
  881. data/test/dummy/node_modules/console-browserify/LICENCE +19 -0
  882. data/test/dummy/node_modules/console-browserify/README.md +33 -0
  883. data/test/dummy/node_modules/console-browserify/index.js +86 -0
  884. data/test/dummy/node_modules/console-browserify/package.json +114 -0
  885. data/test/dummy/node_modules/console-browserify/test/index.js +67 -0
  886. data/test/dummy/node_modules/console-browserify/test/static/index.html +12 -0
  887. data/test/dummy/node_modules/console-browserify/test/static/test-adapter.js +53 -0
  888. data/test/dummy/node_modules/constants-browserify/README.md +54 -0
  889. data/test/dummy/node_modules/constants-browserify/build.sh +1 -0
  890. data/test/dummy/node_modules/constants-browserify/constants.json +209 -0
  891. data/test/dummy/node_modules/constants-browserify/package.json +86 -0
  892. data/test/dummy/node_modules/constants-browserify/test.js +18 -0
  893. data/test/dummy/node_modules/convert-source-map/LICENSE +23 -0
  894. data/test/dummy/node_modules/convert-source-map/README.md +121 -0
  895. data/test/dummy/node_modules/convert-source-map/example/comment-to-json.js +15 -0
  896. data/test/dummy/node_modules/convert-source-map/index.js +156 -0
  897. data/test/dummy/node_modules/convert-source-map/package.json +87 -0
  898. data/test/dummy/node_modules/convert-source-map/test/comment-regex.js +138 -0
  899. data/test/dummy/node_modules/convert-source-map/test/convert-source-map.js +207 -0
  900. data/test/dummy/node_modules/convert-source-map/test/fixtures/map-file-comment-double-slash.css +14 -0
  901. data/test/dummy/node_modules/convert-source-map/test/fixtures/map-file-comment-inline.css +14 -0
  902. data/test/dummy/node_modules/convert-source-map/test/fixtures/map-file-comment.css +14 -0
  903. data/test/dummy/node_modules/convert-source-map/test/fixtures/map-file-comment.css.map +6 -0
  904. data/test/dummy/node_modules/convert-source-map/test/map-file-comment.js +70 -0
  905. data/test/dummy/node_modules/core-util-is/LICENSE +19 -0
  906. data/test/dummy/node_modules/core-util-is/README.md +3 -0
  907. data/test/dummy/node_modules/core-util-is/float.patch +604 -0
  908. data/test/dummy/node_modules/core-util-is/lib/util.js +107 -0
  909. data/test/dummy/node_modules/core-util-is/package.json +88 -0
  910. data/test/dummy/node_modules/core-util-is/test.js +68 -0
  911. data/test/dummy/node_modules/create-ecdh/browser.js +122 -0
  912. data/test/dummy/node_modules/create-ecdh/index.js +3 -0
  913. data/test/dummy/node_modules/create-ecdh/package.json +100 -0
  914. data/test/dummy/node_modules/create-ecdh/readme.md +4 -0
  915. data/test/dummy/node_modules/create-hash/browser.js +52 -0
  916. data/test/dummy/node_modules/create-hash/helpers.js +34 -0
  917. data/test/dummy/node_modules/create-hash/index.js +1 -0
  918. data/test/dummy/node_modules/create-hash/md5.js +156 -0
  919. data/test/dummy/node_modules/create-hash/package.json +104 -0
  920. data/test/dummy/node_modules/create-hash/readme.md +19 -0
  921. data/test/dummy/node_modules/create-hash/test.js +39 -0
  922. data/test/dummy/node_modules/create-hmac/browser.js +68 -0
  923. data/test/dummy/node_modules/create-hmac/index.js +1 -0
  924. data/test/dummy/node_modules/create-hmac/package.json +99 -0
  925. data/test/dummy/node_modules/create-hmac/readme.md +19 -0
  926. data/test/dummy/node_modules/create-hmac/test.js +41 -0
  927. data/test/dummy/node_modules/crypto-browserify/LICENSE +24 -0
  928. data/test/dummy/node_modules/crypto-browserify/README.md +49 -0
  929. data/test/dummy/node_modules/crypto-browserify/example/bundle.js +637 -0
  930. data/test/dummy/node_modules/crypto-browserify/example/index.html +12 -0
  931. data/test/dummy/node_modules/crypto-browserify/example/test.js +4 -0
  932. data/test/dummy/node_modules/crypto-browserify/index.js +77 -0
  933. data/test/dummy/node_modules/crypto-browserify/package.json +114 -0
  934. data/test/dummy/node_modules/crypto-browserify/test/aes.js +49 -0
  935. data/test/dummy/node_modules/crypto-browserify/test/create-hash.js +50 -0
  936. data/test/dummy/node_modules/crypto-browserify/test/create-hmac.js +50 -0
  937. data/test/dummy/node_modules/crypto-browserify/test/dh.js +49 -0
  938. data/test/dummy/node_modules/crypto-browserify/test/ecdh.js +61 -0
  939. data/test/dummy/node_modules/crypto-browserify/test/index.js +18 -0
  940. data/test/dummy/node_modules/crypto-browserify/test/node/dh.js +51 -0
  941. data/test/dummy/node_modules/crypto-browserify/test/pbkdf2.js +21 -0
  942. data/test/dummy/node_modules/crypto-browserify/test/public-encrypt.js +36 -0
  943. data/test/dummy/node_modules/crypto-browserify/test/random-bytes.js +60 -0
  944. data/test/dummy/node_modules/crypto-browserify/test/sign.js +59 -0
  945. data/test/dummy/node_modules/date-now/LICENCE +19 -0
  946. data/test/dummy/node_modules/date-now/README.md +45 -0
  947. data/test/dummy/node_modules/date-now/index.js +5 -0
  948. data/test/dummy/node_modules/date-now/package.json +115 -0
  949. data/test/dummy/node_modules/date-now/seed.js +16 -0
  950. data/test/dummy/node_modules/date-now/test/index.js +28 -0
  951. data/test/dummy/node_modules/date-now/test/static/index.html +10 -0
  952. data/test/dummy/node_modules/defined/LICENSE +18 -0
  953. data/test/dummy/node_modules/defined/example/defined.js +4 -0
  954. data/test/dummy/node_modules/defined/index.js +5 -0
  955. data/test/dummy/node_modules/defined/package.json +115 -0
  956. data/test/dummy/node_modules/defined/readme.markdown +53 -0
  957. data/test/dummy/node_modules/defined/test/def.js +22 -0
  958. data/test/dummy/node_modules/defined/test/falsy.js +9 -0
  959. data/test/dummy/node_modules/deps-sort/LICENSE +18 -0
  960. data/test/dummy/node_modules/deps-sort/bin/cmd.js +10 -0
  961. data/test/dummy/node_modules/deps-sort/example/sort.js +6 -0
  962. data/test/dummy/node_modules/deps-sort/index.js +122 -0
  963. data/test/dummy/node_modules/deps-sort/package.json +97 -0
  964. data/test/dummy/node_modules/deps-sort/readme.markdown +83 -0
  965. data/test/dummy/node_modules/deps-sort/test/dedupe-deps-of-deps.js +71 -0
  966. data/test/dummy/node_modules/deps-sort/test/dedupe.js +39 -0
  967. data/test/dummy/node_modules/deps-sort/test/dedupe_index.js +56 -0
  968. data/test/dummy/node_modules/deps-sort/test/dedupe_undef.js +37 -0
  969. data/test/dummy/node_modules/deps-sort/test/expose.js +38 -0
  970. data/test/dummy/node_modules/deps-sort/test/expose_str.js +44 -0
  971. data/test/dummy/node_modules/deps-sort/test/indexed.js +38 -0
  972. data/test/dummy/node_modules/deps-sort/test/sort.js +23 -0
  973. data/test/dummy/node_modules/des.js/README.md +26 -0
  974. data/test/dummy/node_modules/des.js/lib/des.js +7 -0
  975. data/test/dummy/node_modules/des.js/lib/des/cbc.js +65 -0
  976. data/test/dummy/node_modules/des.js/lib/des/cipher.js +141 -0
  977. data/test/dummy/node_modules/des.js/lib/des/des.js +143 -0
  978. data/test/dummy/node_modules/des.js/lib/des/ede.js +55 -0
  979. data/test/dummy/node_modules/des.js/lib/des/utils.js +256 -0
  980. data/test/dummy/node_modules/des.js/package.json +85 -0
  981. data/test/dummy/node_modules/des.js/test/cbc-test.js +73 -0
  982. data/test/dummy/node_modules/des.js/test/des-test.js +139 -0
  983. data/test/dummy/node_modules/des.js/test/ede-test.js +73 -0
  984. data/test/dummy/node_modules/des.js/test/fixtures.js +5 -0
  985. data/test/dummy/node_modules/des.js/test/utils-test.js +169 -0
  986. data/test/dummy/node_modules/detective/LICENSE +18 -0
  987. data/test/dummy/node_modules/detective/bench/detect.js +7 -0
  988. data/test/dummy/node_modules/detective/bench/esprima_v_acorn.txt +18 -0
  989. data/test/dummy/node_modules/detective/example/strings.js +6 -0
  990. data/test/dummy/node_modules/detective/example/strings_src.js +3 -0
  991. data/test/dummy/node_modules/detective/index.js +71 -0
  992. data/test/dummy/node_modules/detective/package.json +88 -0
  993. data/test/dummy/node_modules/detective/readme.markdown +80 -0
  994. data/test/dummy/node_modules/detective/test/both.js +26 -0
  995. data/test/dummy/node_modules/detective/test/chained.js +9 -0
  996. data/test/dummy/node_modules/detective/test/complicated.js +56 -0
  997. data/test/dummy/node_modules/detective/test/es6-module.js +9 -0
  998. data/test/dummy/node_modules/detective/test/files/both.js +4 -0
  999. data/test/dummy/node_modules/detective/test/files/chained.js +5 -0
  1000. data/test/dummy/node_modules/detective/test/files/es6-module.js +5 -0
  1001. data/test/dummy/node_modules/detective/test/files/generators.js +5 -0
  1002. data/test/dummy/node_modules/detective/test/files/isrequire.js +14 -0
  1003. data/test/dummy/node_modules/detective/test/files/nested.js +22 -0
  1004. data/test/dummy/node_modules/detective/test/files/shebang.js +5 -0
  1005. data/test/dummy/node_modules/detective/test/files/sparse-array.js +3 -0
  1006. data/test/dummy/node_modules/detective/test/files/strings.js +13 -0
  1007. data/test/dummy/node_modules/detective/test/files/word.js +13 -0
  1008. data/test/dummy/node_modules/detective/test/files/yield.js +4 -0
  1009. data/test/dummy/node_modules/detective/test/generators.js +9 -0
  1010. data/test/dummy/node_modules/detective/test/isrequire.js +20 -0
  1011. data/test/dummy/node_modules/detective/test/nested.js +9 -0
  1012. data/test/dummy/node_modules/detective/test/noargs.js +26 -0
  1013. data/test/dummy/node_modules/detective/test/parseopts.js +62 -0
  1014. data/test/dummy/node_modules/detective/test/return.js +9 -0
  1015. data/test/dummy/node_modules/detective/test/shebang.js +9 -0
  1016. data/test/dummy/node_modules/detective/test/sparse-array.js +14 -0
  1017. data/test/dummy/node_modules/detective/test/strings.js +9 -0
  1018. data/test/dummy/node_modules/detective/test/word.js +12 -0
  1019. data/test/dummy/node_modules/detective/test/yield.js +9 -0
  1020. data/test/dummy/node_modules/diffie-hellman/browser.js +42 -0
  1021. data/test/dummy/node_modules/diffie-hellman/index.js +10 -0
  1022. data/test/dummy/node_modules/diffie-hellman/lib/dh.js +164 -0
  1023. data/test/dummy/node_modules/diffie-hellman/lib/generatePrime.js +105 -0
  1024. data/test/dummy/node_modules/diffie-hellman/lib/primes.json +34 -0
  1025. data/test/dummy/node_modules/diffie-hellman/package.json +101 -0
  1026. data/test/dummy/node_modules/diffie-hellman/readme.md +4 -0
  1027. data/test/dummy/node_modules/domain-browser/HISTORY.md +42 -0
  1028. data/test/dummy/node_modules/domain-browser/LICENSE.md +23 -0
  1029. data/test/dummy/node_modules/domain-browser/README.md +111 -0
  1030. data/test/dummy/node_modules/domain-browser/index.js +69 -0
  1031. data/test/dummy/node_modules/domain-browser/package.json +173 -0
  1032. data/test/dummy/node_modules/domain-browser/test.js +100 -0
  1033. data/test/dummy/node_modules/duplexer2/LICENSE.md +26 -0
  1034. data/test/dummy/node_modules/duplexer2/README.md +115 -0
  1035. data/test/dummy/node_modules/duplexer2/index.js +76 -0
  1036. data/test/dummy/node_modules/duplexer2/package.json +97 -0
  1037. data/test/dummy/node_modules/elliptic/README.md +202 -0
  1038. data/test/dummy/node_modules/elliptic/lib/elliptic.js +14 -0
  1039. data/test/dummy/node_modules/elliptic/lib/elliptic/curve/base.js +375 -0
  1040. data/test/dummy/node_modules/elliptic/lib/elliptic/curve/edwards.js +433 -0
  1041. data/test/dummy/node_modules/elliptic/lib/elliptic/curve/index.js +8 -0
  1042. data/test/dummy/node_modules/elliptic/lib/elliptic/curve/mont.js +180 -0
  1043. data/test/dummy/node_modules/elliptic/lib/elliptic/curve/short.js +938 -0
  1044. data/test/dummy/node_modules/elliptic/lib/elliptic/curves.js +205 -0
  1045. data/test/dummy/node_modules/elliptic/lib/elliptic/ec/index.js +236 -0
  1046. data/test/dummy/node_modules/elliptic/lib/elliptic/ec/key.js +107 -0
  1047. data/test/dummy/node_modules/elliptic/lib/elliptic/ec/signature.js +135 -0
  1048. data/test/dummy/node_modules/elliptic/lib/elliptic/eddsa/index.js +118 -0
  1049. data/test/dummy/node_modules/elliptic/lib/elliptic/eddsa/key.js +96 -0
  1050. data/test/dummy/node_modules/elliptic/lib/elliptic/eddsa/signature.js +66 -0
  1051. data/test/dummy/node_modules/elliptic/lib/elliptic/hmac-drbg.js +114 -0
  1052. data/test/dummy/node_modules/elliptic/lib/elliptic/precomputed/secp256k1.js +780 -0
  1053. data/test/dummy/node_modules/elliptic/lib/elliptic/utils.js +172 -0
  1054. data/test/dummy/node_modules/elliptic/package.json +110 -0
  1055. data/test/dummy/node_modules/events/History.md +42 -0
  1056. data/test/dummy/node_modules/events/LICENSE +22 -0
  1057. data/test/dummy/node_modules/events/Readme.md +19 -0
  1058. data/test/dummy/node_modules/events/events.js +302 -0
  1059. data/test/dummy/node_modules/events/package.json +95 -0
  1060. data/test/dummy/node_modules/events/tests/add-listeners.js +63 -0
  1061. data/test/dummy/node_modules/events/tests/check-listener-leaks.js +86 -0
  1062. data/test/dummy/node_modules/events/tests/common.js +42 -0
  1063. data/test/dummy/node_modules/events/tests/index.js +25 -0
  1064. data/test/dummy/node_modules/events/tests/legacy-compat.js +18 -0
  1065. data/test/dummy/node_modules/events/tests/listener-count.js +36 -0
  1066. data/test/dummy/node_modules/events/tests/listeners-side-effects.js +55 -0
  1067. data/test/dummy/node_modules/events/tests/listeners.js +51 -0
  1068. data/test/dummy/node_modules/events/tests/max-listeners.js +50 -0
  1069. data/test/dummy/node_modules/events/tests/modify-in-emit.js +76 -0
  1070. data/test/dummy/node_modules/events/tests/num-args.js +44 -0
  1071. data/test/dummy/node_modules/events/tests/once.js +59 -0
  1072. data/test/dummy/node_modules/events/tests/remove-all-listeners.js +80 -0
  1073. data/test/dummy/node_modules/events/tests/remove-listeners.js +84 -0
  1074. data/test/dummy/node_modules/events/tests/set-max-listeners-side-effects.js +29 -0
  1075. data/test/dummy/node_modules/events/tests/subclass.js +51 -0
  1076. data/test/dummy/node_modules/evp_bytestokey/index.js +68 -0
  1077. data/test/dummy/node_modules/evp_bytestokey/package.json +84 -0
  1078. data/test/dummy/node_modules/evp_bytestokey/readme.md +13 -0
  1079. data/test/dummy/node_modules/evp_bytestokey/test.js +19 -0
  1080. data/test/dummy/node_modules/function-bind/LICENSE +20 -0
  1081. data/test/dummy/node_modules/function-bind/README.md +48 -0
  1082. data/test/dummy/node_modules/function-bind/implementation.js +48 -0
  1083. data/test/dummy/node_modules/function-bind/index.js +3 -0
  1084. data/test/dummy/node_modules/function-bind/package.json +129 -0
  1085. data/test/dummy/node_modules/function-bind/test/index.js +250 -0
  1086. data/test/dummy/node_modules/glob/LICENSE +15 -0
  1087. data/test/dummy/node_modules/glob/README.md +377 -0
  1088. data/test/dummy/node_modules/glob/common.js +245 -0
  1089. data/test/dummy/node_modules/glob/glob.js +752 -0
  1090. data/test/dummy/node_modules/glob/package.json +98 -0
  1091. data/test/dummy/node_modules/glob/sync.js +460 -0
  1092. data/test/dummy/node_modules/has/LICENSE-MIT +22 -0
  1093. data/test/dummy/node_modules/has/README.mkd +18 -0
  1094. data/test/dummy/node_modules/has/package.json +85 -0
  1095. data/test/dummy/node_modules/has/src/index.js +3 -0
  1096. data/test/dummy/node_modules/has/test/index.js +10 -0
  1097. data/test/dummy/node_modules/hash.js/README.md +28 -0
  1098. data/test/dummy/node_modules/hash.js/lib/hash.js +15 -0
  1099. data/test/dummy/node_modules/hash.js/lib/hash/common.js +91 -0
  1100. data/test/dummy/node_modules/hash.js/lib/hash/hmac.js +48 -0
  1101. data/test/dummy/node_modules/hash.js/lib/hash/ripemd.js +144 -0
  1102. data/test/dummy/node_modules/hash.js/lib/hash/sha.js +564 -0
  1103. data/test/dummy/node_modules/hash.js/lib/hash/utils.js +257 -0
  1104. data/test/dummy/node_modules/hash.js/package.json +82 -0
  1105. data/test/dummy/node_modules/hash.js/test/hash-test.js +119 -0
  1106. data/test/dummy/node_modules/hash.js/test/hmac-test.js +59 -0
  1107. data/test/dummy/node_modules/htmlescape/CHANGELOG.md +9 -0
  1108. data/test/dummy/node_modules/htmlescape/LICENSE +9 -0
  1109. data/test/dummy/node_modules/htmlescape/README.md +30 -0
  1110. data/test/dummy/node_modules/htmlescape/htmlescape.js +42 -0
  1111. data/test/dummy/node_modules/htmlescape/package.json +88 -0
  1112. data/test/dummy/node_modules/https-browserify/LICENSE +18 -0
  1113. data/test/dummy/node_modules/https-browserify/index.js +14 -0
  1114. data/test/dummy/node_modules/https-browserify/package.json +84 -0
  1115. data/test/dummy/node_modules/https-browserify/readme.markdown +22 -0
  1116. data/test/dummy/node_modules/ieee754/LICENSE +56 -0
  1117. data/test/dummy/node_modules/ieee754/README.md +47 -0
  1118. data/test/dummy/node_modules/ieee754/index.js +84 -0
  1119. data/test/dummy/node_modules/ieee754/package.json +93 -0
  1120. data/test/dummy/node_modules/ieee754/test/basic.js +23 -0
  1121. data/test/dummy/node_modules/indexof/Makefile +11 -0
  1122. data/test/dummy/node_modules/indexof/Readme.md +15 -0
  1123. data/test/dummy/node_modules/indexof/component.json +10 -0
  1124. data/test/dummy/node_modules/indexof/index.js +10 -0
  1125. data/test/dummy/node_modules/indexof/package.json +58 -0
  1126. data/test/dummy/node_modules/inflight/LICENSE +15 -0
  1127. data/test/dummy/node_modules/inflight/README.md +37 -0
  1128. data/test/dummy/node_modules/inflight/inflight.js +44 -0
  1129. data/test/dummy/node_modules/inflight/package.json +97 -0
  1130. data/test/dummy/node_modules/inherits/LICENSE +16 -0
  1131. data/test/dummy/node_modules/inherits/README.md +42 -0
  1132. data/test/dummy/node_modules/inherits/inherits.js +1 -0
  1133. data/test/dummy/node_modules/inherits/inherits_browser.js +23 -0
  1134. data/test/dummy/node_modules/inherits/package.json +100 -0
  1135. data/test/dummy/node_modules/inherits/test.js +25 -0
  1136. data/test/dummy/node_modules/inline-source-map/LICENSE +23 -0
  1137. data/test/dummy/node_modules/inline-source-map/README.md +89 -0
  1138. data/test/dummy/node_modules/inline-source-map/example/foo-bar.js +8 -0
  1139. data/test/dummy/node_modules/inline-source-map/index.js +135 -0
  1140. data/test/dummy/node_modules/inline-source-map/package.json +103 -0
  1141. data/test/dummy/node_modules/inline-source-map/test/inline-source-map.js +342 -0
  1142. data/test/dummy/node_modules/inline-source-map/test/source-content.js +143 -0
  1143. data/test/dummy/node_modules/insert-module-globals/LICENSE +18 -0
  1144. data/test/dummy/node_modules/insert-module-globals/bench/results.txt +18 -0
  1145. data/test/dummy/node_modules/insert-module-globals/bench/run.sh +2 -0
  1146. data/test/dummy/node_modules/insert-module-globals/bin/cmd.js +26 -0
  1147. data/test/dummy/node_modules/insert-module-globals/example/files/foo/index.js +6 -0
  1148. data/test/dummy/node_modules/insert-module-globals/example/files/main.js +6 -0
  1149. data/test/dummy/node_modules/insert-module-globals/example/insert.js +12 -0
  1150. data/test/dummy/node_modules/insert-module-globals/index.js +170 -0
  1151. data/test/dummy/node_modules/insert-module-globals/package.json +108 -0
  1152. data/test/dummy/node_modules/insert-module-globals/readme.markdown +146 -0
  1153. data/test/dummy/node_modules/insert-module-globals/test/always.js +105 -0
  1154. data/test/dummy/node_modules/insert-module-globals/test/always/custom_globals_without_defaults.js +7 -0
  1155. data/test/dummy/node_modules/insert-module-globals/test/always/hidden_from_quick_test.js +1 -0
  1156. data/test/dummy/node_modules/insert-module-globals/test/always/main.js +10 -0
  1157. data/test/dummy/node_modules/insert-module-globals/test/global.js +63 -0
  1158. data/test/dummy/node_modules/insert-module-globals/test/global/filename.js +2 -0
  1159. data/test/dummy/node_modules/insert-module-globals/test/global/main.js +2 -0
  1160. data/test/dummy/node_modules/insert-module-globals/test/insert.js +46 -0
  1161. data/test/dummy/node_modules/insert-module-globals/test/insert/buffer.js +1 -0
  1162. data/test/dummy/node_modules/insert-module-globals/test/insert/foo/buf.js +4 -0
  1163. data/test/dummy/node_modules/insert-module-globals/test/insert/foo/index.js +4 -0
  1164. data/test/dummy/node_modules/insert-module-globals/test/insert/main.js +4 -0
  1165. data/test/dummy/node_modules/insert-module-globals/test/isbuffer.js +27 -0
  1166. data/test/dummy/node_modules/insert-module-globals/test/isbuffer/main.js +3 -0
  1167. data/test/dummy/node_modules/insert-module-globals/test/return.js +27 -0
  1168. data/test/dummy/node_modules/insert-module-globals/test/return/foo/index.js +4 -0
  1169. data/test/dummy/node_modules/insert-module-globals/test/return/main.js +6 -0
  1170. data/test/dummy/node_modules/insert-module-globals/test/sourcemap.js +40 -0
  1171. data/test/dummy/node_modules/insert-module-globals/test/sourcemap/main.js +3 -0
  1172. data/test/dummy/node_modules/insert-module-globals/test/sourcemap/main_es6.js +1 -0
  1173. data/test/dummy/node_modules/insert-module-globals/test/unprefix.js +33 -0
  1174. data/test/dummy/node_modules/insert-module-globals/test/unprefix/hello.js +2 -0
  1175. data/test/dummy/node_modules/insert-module-globals/test/unprefix/main.js +3 -0
  1176. data/test/dummy/node_modules/is-buffer/LICENSE +21 -0
  1177. data/test/dummy/node_modules/is-buffer/README.md +49 -0
  1178. data/test/dummy/node_modules/is-buffer/index.js +21 -0
  1179. data/test/dummy/node_modules/is-buffer/package.json +104 -0
  1180. data/test/dummy/node_modules/is-buffer/test/basic.js +25 -0
  1181. data/test/dummy/node_modules/is/CHANGELOG.md +100 -0
  1182. data/test/dummy/node_modules/is/LICENSE.md +23 -0
  1183. data/test/dummy/node_modules/is/Makefile +17 -0
  1184. data/test/dummy/node_modules/is/README.md +140 -0
  1185. data/test/dummy/node_modules/is/component.json +8 -0
  1186. data/test/dummy/node_modules/is/index.js +761 -0
  1187. data/test/dummy/node_modules/is/package.json +119 -0
  1188. data/test/dummy/node_modules/is/test/index.js +636 -0
  1189. data/test/dummy/node_modules/isarray/Makefile +6 -0
  1190. data/test/dummy/node_modules/isarray/README.md +60 -0
  1191. data/test/dummy/node_modules/isarray/component.json +19 -0
  1192. data/test/dummy/node_modules/isarray/index.js +5 -0
  1193. data/test/dummy/node_modules/isarray/package.json +99 -0
  1194. data/test/dummy/node_modules/isarray/test.js +20 -0
  1195. data/test/dummy/node_modules/jquery.cookie/CHANGELOG.md +73 -0
  1196. data/test/dummy/node_modules/jquery.cookie/CONTRIBUTING.md +53 -0
  1197. data/test/dummy/node_modules/jquery.cookie/Gruntfile.js +115 -0
  1198. data/test/dummy/node_modules/jquery.cookie/MIT-LICENSE.txt +20 -0
  1199. data/test/dummy/node_modules/jquery.cookie/README.md +151 -0
  1200. data/test/dummy/node_modules/jquery.cookie/bower.json +18 -0
  1201. data/test/dummy/node_modules/jquery.cookie/component.json +14 -0
  1202. data/test/dummy/node_modules/jquery.cookie/cookie.jquery.json +32 -0
  1203. data/test/dummy/node_modules/jquery.cookie/jquery.cookie.js +117 -0
  1204. data/test/dummy/node_modules/jquery.cookie/package.json +103 -0
  1205. data/test/dummy/node_modules/jquery.cookie/test/index.html +19 -0
  1206. data/test/dummy/node_modules/jquery.cookie/test/malformed_cookie.html +18 -0
  1207. data/test/dummy/node_modules/jquery.cookie/test/server.js +24 -0
  1208. data/test/dummy/node_modules/jquery.cookie/test/tests.js +325 -0
  1209. data/test/dummy/node_modules/json-stable-stringify/LICENSE +18 -0
  1210. data/test/dummy/node_modules/json-stable-stringify/example/key_cmp.js +7 -0
  1211. data/test/dummy/node_modules/json-stable-stringify/example/nested.js +3 -0
  1212. data/test/dummy/node_modules/json-stable-stringify/example/str.js +3 -0
  1213. data/test/dummy/node_modules/json-stable-stringify/example/value_cmp.js +7 -0
  1214. data/test/dummy/node_modules/json-stable-stringify/index.js +50 -0
  1215. data/test/dummy/node_modules/json-stable-stringify/package.json +95 -0
  1216. data/test/dummy/node_modules/json-stable-stringify/readme.markdown +90 -0
  1217. data/test/dummy/node_modules/json-stable-stringify/test/cmp.js +11 -0
  1218. data/test/dummy/node_modules/json-stable-stringify/test/nested.js +8 -0
  1219. data/test/dummy/node_modules/json-stable-stringify/test/str.js +8 -0
  1220. data/test/dummy/node_modules/jsonify/README.markdown +34 -0
  1221. data/test/dummy/node_modules/jsonify/index.js +2 -0
  1222. data/test/dummy/node_modules/jsonify/lib/parse.js +273 -0
  1223. data/test/dummy/node_modules/jsonify/lib/stringify.js +154 -0
  1224. data/test/dummy/node_modules/jsonify/package.json +83 -0
  1225. data/test/dummy/node_modules/jsonify/test/parse.js +16 -0
  1226. data/test/dummy/node_modules/jsonify/test/stringify.js +15 -0
  1227. data/test/dummy/node_modules/jsonparse/LICENSE +24 -0
  1228. data/test/dummy/node_modules/jsonparse/README.markdown +11 -0
  1229. data/test/dummy/node_modules/jsonparse/bench.js +26 -0
  1230. data/test/dummy/node_modules/jsonparse/examples/twitterfeed.js +30 -0
  1231. data/test/dummy/node_modules/jsonparse/jsonparse.js +341 -0
  1232. data/test/dummy/node_modules/jsonparse/package.json +85 -0
  1233. data/test/dummy/node_modules/jsonparse/samplejson/basic.json +167 -0
  1234. data/test/dummy/node_modules/jsonparse/samplejson/basic2.json +180 -0
  1235. data/test/dummy/node_modules/jsonparse/test/boundary.js +110 -0
  1236. data/test/dummy/node_modules/jsonparse/test/offset.js +67 -0
  1237. data/test/dummy/node_modules/jsonparse/test/primitives.js +57 -0
  1238. data/test/dummy/node_modules/jsonparse/test/unvalid.js +15 -0
  1239. data/test/dummy/node_modules/jsonparse/test/utf8.js +38 -0
  1240. data/test/dummy/node_modules/labeled-stream-splicer/LICENSE +18 -0
  1241. data/test/dummy/node_modules/labeled-stream-splicer/example/browser/bar.js +3 -0
  1242. data/test/dummy/node_modules/labeled-stream-splicer/example/browser/foo.js +5 -0
  1243. data/test/dummy/node_modules/labeled-stream-splicer/example/browser/main.js +2 -0
  1244. data/test/dummy/node_modules/labeled-stream-splicer/example/browser/xyz.js +2 -0
  1245. data/test/dummy/node_modules/labeled-stream-splicer/example/bundle.js +16 -0
  1246. data/test/dummy/node_modules/labeled-stream-splicer/index.js +65 -0
  1247. data/test/dummy/node_modules/labeled-stream-splicer/node_modules/isarray/README.md +54 -0
  1248. data/test/dummy/node_modules/labeled-stream-splicer/node_modules/isarray/build/build.js +209 -0
  1249. data/test/dummy/node_modules/labeled-stream-splicer/node_modules/isarray/component.json +19 -0
  1250. data/test/dummy/node_modules/labeled-stream-splicer/node_modules/isarray/index.js +3 -0
  1251. data/test/dummy/node_modules/labeled-stream-splicer/node_modules/isarray/package.json +78 -0
  1252. data/test/dummy/node_modules/labeled-stream-splicer/package.json +90 -0
  1253. data/test/dummy/node_modules/labeled-stream-splicer/readme.markdown +124 -0
  1254. data/test/dummy/node_modules/labeled-stream-splicer/test/bundle.js +27 -0
  1255. data/test/dummy/node_modules/labeled-stream-splicer/test/bundle/bar.js +3 -0
  1256. data/test/dummy/node_modules/labeled-stream-splicer/test/bundle/foo.js +5 -0
  1257. data/test/dummy/node_modules/labeled-stream-splicer/test/bundle/main.js +2 -0
  1258. data/test/dummy/node_modules/labeled-stream-splicer/test/bundle/xyz.js +2 -0
  1259. data/test/dummy/node_modules/lexical-scope/LICENSE +18 -0
  1260. data/test/dummy/node_modules/lexical-scope/bench/jquery.js +4 -0
  1261. data/test/dummy/node_modules/lexical-scope/bench/results.txt +15 -0
  1262. data/test/dummy/node_modules/lexical-scope/bench/run.js +7 -0
  1263. data/test/dummy/node_modules/lexical-scope/example/detect.js +6 -0
  1264. data/test/dummy/node_modules/lexical-scope/example/src.js +27 -0
  1265. data/test/dummy/node_modules/lexical-scope/index.js +194 -0
  1266. data/test/dummy/node_modules/lexical-scope/package.json +110 -0
  1267. data/test/dummy/node_modules/lexical-scope/readme.markdown +148 -0
  1268. data/test/dummy/node_modules/lexical-scope/test/argument.js +17 -0
  1269. data/test/dummy/node_modules/lexical-scope/test/assign_implicit.js +13 -0
  1270. data/test/dummy/node_modules/lexical-scope/test/detect.js +17 -0
  1271. data/test/dummy/node_modules/lexical-scope/test/files/argument.js +6 -0
  1272. data/test/dummy/node_modules/lexical-scope/test/files/assign_implicit.js +2 -0
  1273. data/test/dummy/node_modules/lexical-scope/test/files/buffer_call.js +1 -0
  1274. data/test/dummy/node_modules/lexical-scope/test/files/buffer_isbuffer.js +1 -0
  1275. data/test/dummy/node_modules/lexical-scope/test/files/buffer_var.js +1 -0
  1276. data/test/dummy/node_modules/lexical-scope/test/files/detect.js +32 -0
  1277. data/test/dummy/node_modules/lexical-scope/test/files/labels.js +11 -0
  1278. data/test/dummy/node_modules/lexical-scope/test/files/multiple-exports.js +6 -0
  1279. data/test/dummy/node_modules/lexical-scope/test/files/named_arg.js +6 -0
  1280. data/test/dummy/node_modules/lexical-scope/test/files/obj.js +1 -0
  1281. data/test/dummy/node_modules/lexical-scope/test/files/return_hash.js +5 -0
  1282. data/test/dummy/node_modules/lexical-scope/test/files/right_hand.js +2 -0
  1283. data/test/dummy/node_modules/lexical-scope/test/files/try_catch.js +7 -0
  1284. data/test/dummy/node_modules/lexical-scope/test/labels.js +13 -0
  1285. data/test/dummy/node_modules/lexical-scope/test/multiple-exports.js +18 -0
  1286. data/test/dummy/node_modules/lexical-scope/test/named_arg.js +17 -0
  1287. data/test/dummy/node_modules/lexical-scope/test/obj.js +16 -0
  1288. data/test/dummy/node_modules/lexical-scope/test/package.json +3 -0
  1289. data/test/dummy/node_modules/lexical-scope/test/props.js +41 -0
  1290. data/test/dummy/node_modules/lexical-scope/test/return_hash.js +13 -0
  1291. data/test/dummy/node_modules/lexical-scope/test/right_hand.js +16 -0
  1292. data/test/dummy/node_modules/lexical-scope/test/shebang.js +19 -0
  1293. data/test/dummy/node_modules/lexical-scope/test/try_catch.js +13 -0
  1294. data/test/dummy/node_modules/lodash.memoize/LICENSE.txt +22 -0
  1295. data/test/dummy/node_modules/lodash.memoize/README.md +20 -0
  1296. data/test/dummy/node_modules/lodash.memoize/index.js +167 -0
  1297. data/test/dummy/node_modules/lodash.memoize/package.json +121 -0
  1298. data/test/dummy/node_modules/lodash/LICENSE +47 -0
  1299. data/test/dummy/node_modules/lodash/README.md +40 -0
  1300. data/test/dummy/node_modules/lodash/_DataView.js +7 -0
  1301. data/test/dummy/node_modules/lodash/_Hash.js +32 -0
  1302. data/test/dummy/node_modules/lodash/_LazyWrapper.js +28 -0
  1303. data/test/dummy/node_modules/lodash/_ListCache.js +32 -0
  1304. data/test/dummy/node_modules/lodash/_LodashWrapper.js +22 -0
  1305. data/test/dummy/node_modules/lodash/_Map.js +7 -0
  1306. data/test/dummy/node_modules/lodash/_MapCache.js +32 -0
  1307. data/test/dummy/node_modules/lodash/_Promise.js +7 -0
  1308. data/test/dummy/node_modules/lodash/_Set.js +7 -0
  1309. data/test/dummy/node_modules/lodash/_SetCache.js +27 -0
  1310. data/test/dummy/node_modules/lodash/_Stack.js +26 -0
  1311. data/test/dummy/node_modules/lodash/_Symbol.js +6 -0
  1312. data/test/dummy/node_modules/lodash/_Uint8Array.js +6 -0
  1313. data/test/dummy/node_modules/lodash/_WeakMap.js +7 -0
  1314. data/test/dummy/node_modules/lodash/_addMapEntry.js +15 -0
  1315. data/test/dummy/node_modules/lodash/_addSetEntry.js +15 -0
  1316. data/test/dummy/node_modules/lodash/_apply.js +21 -0
  1317. data/test/dummy/node_modules/lodash/_arrayAggregator.js +22 -0
  1318. data/test/dummy/node_modules/lodash/_arrayEach.js +22 -0
  1319. data/test/dummy/node_modules/lodash/_arrayEachRight.js +21 -0
  1320. data/test/dummy/node_modules/lodash/_arrayEvery.js +23 -0
  1321. data/test/dummy/node_modules/lodash/_arrayFilter.js +25 -0
  1322. data/test/dummy/node_modules/lodash/_arrayIncludes.js +17 -0
  1323. data/test/dummy/node_modules/lodash/_arrayIncludesWith.js +22 -0
  1324. data/test/dummy/node_modules/lodash/_arrayLikeKeys.js +39 -0
  1325. data/test/dummy/node_modules/lodash/_arrayMap.js +21 -0
  1326. data/test/dummy/node_modules/lodash/_arrayPush.js +20 -0
  1327. data/test/dummy/node_modules/lodash/_arrayReduce.js +26 -0
  1328. data/test/dummy/node_modules/lodash/_arrayReduceRight.js +24 -0
  1329. data/test/dummy/node_modules/lodash/_arraySome.js +23 -0
  1330. data/test/dummy/node_modules/lodash/_asciiSize.js +12 -0
  1331. data/test/dummy/node_modules/lodash/_asciiToArray.js +12 -0
  1332. data/test/dummy/node_modules/lodash/_asciiWords.js +15 -0
  1333. data/test/dummy/node_modules/lodash/_assignInDefaults.js +27 -0
  1334. data/test/dummy/node_modules/lodash/_assignMergeValue.js +19 -0
  1335. data/test/dummy/node_modules/lodash/_assignValue.js +27 -0
  1336. data/test/dummy/node_modules/lodash/_assocIndexOf.js +21 -0
  1337. data/test/dummy/node_modules/lodash/_baseAggregator.js +21 -0
  1338. data/test/dummy/node_modules/lodash/_baseAssign.js +17 -0
  1339. data/test/dummy/node_modules/lodash/_baseAt.js +23 -0
  1340. data/test/dummy/node_modules/lodash/_baseClamp.js +22 -0
  1341. data/test/dummy/node_modules/lodash/_baseClone.js +139 -0
  1342. data/test/dummy/node_modules/lodash/_baseConforms.js +18 -0
  1343. data/test/dummy/node_modules/lodash/_baseConformsTo.js +27 -0
  1344. data/test/dummy/node_modules/lodash/_baseCreate.js +18 -0
  1345. data/test/dummy/node_modules/lodash/_baseDelay.js +21 -0
  1346. data/test/dummy/node_modules/lodash/_baseDifference.js +67 -0
  1347. data/test/dummy/node_modules/lodash/_baseEach.js +14 -0
  1348. data/test/dummy/node_modules/lodash/_baseEachRight.js +14 -0
  1349. data/test/dummy/node_modules/lodash/_baseEvery.js +21 -0
  1350. data/test/dummy/node_modules/lodash/_baseExtremum.js +32 -0
  1351. data/test/dummy/node_modules/lodash/_baseFill.js +32 -0
  1352. data/test/dummy/node_modules/lodash/_baseFilter.js +21 -0
  1353. data/test/dummy/node_modules/lodash/_baseFindIndex.js +24 -0
  1354. data/test/dummy/node_modules/lodash/_baseFindKey.js +23 -0
  1355. data/test/dummy/node_modules/lodash/_baseFlatten.js +38 -0
  1356. data/test/dummy/node_modules/lodash/_baseFor.js +16 -0
  1357. data/test/dummy/node_modules/lodash/_baseForOwn.js +16 -0
  1358. data/test/dummy/node_modules/lodash/_baseForOwnRight.js +16 -0
  1359. data/test/dummy/node_modules/lodash/_baseForRight.js +15 -0
  1360. data/test/dummy/node_modules/lodash/_baseFunctions.js +19 -0
  1361. data/test/dummy/node_modules/lodash/_baseGet.js +25 -0
  1362. data/test/dummy/node_modules/lodash/_baseGetAllKeys.js +20 -0
  1363. data/test/dummy/node_modules/lodash/_baseGetTag.js +22 -0
  1364. data/test/dummy/node_modules/lodash/_baseGt.js +14 -0
  1365. data/test/dummy/node_modules/lodash/_baseHas.js +19 -0
  1366. data/test/dummy/node_modules/lodash/_baseHasIn.js +13 -0
  1367. data/test/dummy/node_modules/lodash/_baseInRange.js +18 -0
  1368. data/test/dummy/node_modules/lodash/_baseIndexOf.js +28 -0
  1369. data/test/dummy/node_modules/lodash/_baseIndexOfWith.js +23 -0
  1370. data/test/dummy/node_modules/lodash/_baseIntersection.js +74 -0
  1371. data/test/dummy/node_modules/lodash/_baseInverter.js +21 -0
  1372. data/test/dummy/node_modules/lodash/_baseInvoke.js +28 -0
  1373. data/test/dummy/node_modules/lodash/_baseIsArrayBuffer.js +26 -0
  1374. data/test/dummy/node_modules/lodash/_baseIsDate.js +27 -0
  1375. data/test/dummy/node_modules/lodash/_baseIsEqual.js +30 -0
  1376. data/test/dummy/node_modules/lodash/_baseIsEqualDeep.js +82 -0
  1377. data/test/dummy/node_modules/lodash/_baseIsMap.js +18 -0
  1378. data/test/dummy/node_modules/lodash/_baseIsMatch.js +62 -0
  1379. data/test/dummy/node_modules/lodash/_baseIsNaN.js +12 -0
  1380. data/test/dummy/node_modules/lodash/_baseIsNative.js +48 -0
  1381. data/test/dummy/node_modules/lodash/_baseIsRegExp.js +27 -0
  1382. data/test/dummy/node_modules/lodash/_baseIsSet.js +18 -0
  1383. data/test/dummy/node_modules/lodash/_baseIsTypedArray.js +69 -0
  1384. data/test/dummy/node_modules/lodash/_baseIteratee.js +31 -0
  1385. data/test/dummy/node_modules/lodash/_baseKeys.js +30 -0
  1386. data/test/dummy/node_modules/lodash/_baseKeysIn.js +33 -0
  1387. data/test/dummy/node_modules/lodash/_baseLodash.js +10 -0
  1388. data/test/dummy/node_modules/lodash/_baseLt.js +14 -0
  1389. data/test/dummy/node_modules/lodash/_baseMap.js +22 -0
  1390. data/test/dummy/node_modules/lodash/_baseMatches.js +22 -0
  1391. data/test/dummy/node_modules/lodash/_baseMatchesProperty.js +33 -0
  1392. data/test/dummy/node_modules/lodash/_baseMean.js +20 -0
  1393. data/test/dummy/node_modules/lodash/_baseMerge.js +50 -0
  1394. data/test/dummy/node_modules/lodash/_baseMergeDeep.js +82 -0
  1395. data/test/dummy/node_modules/lodash/_baseNth.js +20 -0
  1396. data/test/dummy/node_modules/lodash/_baseOrderBy.js +34 -0
  1397. data/test/dummy/node_modules/lodash/_basePick.js +19 -0
  1398. data/test/dummy/node_modules/lodash/_basePickBy.js +26 -0
  1399. data/test/dummy/node_modules/lodash/_baseProperty.js +14 -0
  1400. data/test/dummy/node_modules/lodash/_basePropertyDeep.js +16 -0
  1401. data/test/dummy/node_modules/lodash/_basePropertyOf.js +14 -0
  1402. data/test/dummy/node_modules/lodash/_basePullAll.js +51 -0
  1403. data/test/dummy/node_modules/lodash/_basePullAt.js +50 -0
  1404. data/test/dummy/node_modules/lodash/_baseRandom.js +18 -0
  1405. data/test/dummy/node_modules/lodash/_baseRange.js +28 -0
  1406. data/test/dummy/node_modules/lodash/_baseReduce.js +23 -0
  1407. data/test/dummy/node_modules/lodash/_baseRepeat.js +35 -0
  1408. data/test/dummy/node_modules/lodash/_baseRest.js +35 -0
  1409. data/test/dummy/node_modules/lodash/_baseSet.js +48 -0
  1410. data/test/dummy/node_modules/lodash/_baseSetData.js +17 -0
  1411. data/test/dummy/node_modules/lodash/_baseSlice.js +31 -0
  1412. data/test/dummy/node_modules/lodash/_baseSome.js +22 -0
  1413. data/test/dummy/node_modules/lodash/_baseSortBy.js +21 -0
  1414. data/test/dummy/node_modules/lodash/_baseSortedIndex.js +42 -0
  1415. data/test/dummy/node_modules/lodash/_baseSortedIndexBy.js +64 -0
  1416. data/test/dummy/node_modules/lodash/_baseSortedUniq.js +30 -0
  1417. data/test/dummy/node_modules/lodash/_baseSum.js +24 -0
  1418. data/test/dummy/node_modules/lodash/_baseTimes.js +20 -0
  1419. data/test/dummy/node_modules/lodash/_baseToNumber.js +24 -0
  1420. data/test/dummy/node_modules/lodash/_baseToPairs.js +18 -0
  1421. data/test/dummy/node_modules/lodash/_baseToString.js +31 -0
  1422. data/test/dummy/node_modules/lodash/_baseUnary.js +14 -0
  1423. data/test/dummy/node_modules/lodash/_baseUniq.js +72 -0
  1424. data/test/dummy/node_modules/lodash/_baseUnset.js +29 -0
  1425. data/test/dummy/node_modules/lodash/_baseUpdate.js +18 -0
  1426. data/test/dummy/node_modules/lodash/_baseValues.js +19 -0
  1427. data/test/dummy/node_modules/lodash/_baseWhile.js +26 -0
  1428. data/test/dummy/node_modules/lodash/_baseWrapperValue.js +25 -0
  1429. data/test/dummy/node_modules/lodash/_baseXor.js +30 -0
  1430. data/test/dummy/node_modules/lodash/_baseZipObject.js +23 -0
  1431. data/test/dummy/node_modules/lodash/_cacheHas.js +13 -0
  1432. data/test/dummy/node_modules/lodash/_castArrayLikeObject.js +14 -0
  1433. data/test/dummy/node_modules/lodash/_castFunction.js +14 -0
  1434. data/test/dummy/node_modules/lodash/_castPath.js +15 -0
  1435. data/test/dummy/node_modules/lodash/_castSlice.js +18 -0
  1436. data/test/dummy/node_modules/lodash/_charsEndIndex.js +19 -0
  1437. data/test/dummy/node_modules/lodash/_charsStartIndex.js +20 -0
  1438. data/test/dummy/node_modules/lodash/_cloneArrayBuffer.js +16 -0
  1439. data/test/dummy/node_modules/lodash/_cloneBuffer.js +18 -0
  1440. data/test/dummy/node_modules/lodash/_cloneDataView.js +16 -0
  1441. data/test/dummy/node_modules/lodash/_cloneMap.js +19 -0
  1442. data/test/dummy/node_modules/lodash/_cloneRegExp.js +17 -0
  1443. data/test/dummy/node_modules/lodash/_cloneSet.js +19 -0
  1444. data/test/dummy/node_modules/lodash/_cloneSymbol.js +18 -0
  1445. data/test/dummy/node_modules/lodash/_cloneTypedArray.js +16 -0
  1446. data/test/dummy/node_modules/lodash/_compareAscending.js +41 -0
  1447. data/test/dummy/node_modules/lodash/_compareMultiple.js +44 -0
  1448. data/test/dummy/node_modules/lodash/_composeArgs.js +39 -0
  1449. data/test/dummy/node_modules/lodash/_composeArgsRight.js +41 -0
  1450. data/test/dummy/node_modules/lodash/_copyArray.js +20 -0
  1451. data/test/dummy/node_modules/lodash/_copyObject.js +31 -0
  1452. data/test/dummy/node_modules/lodash/_copySymbols.js +16 -0
  1453. data/test/dummy/node_modules/lodash/_coreJsData.js +6 -0
  1454. data/test/dummy/node_modules/lodash/_countHolders.js +21 -0
  1455. data/test/dummy/node_modules/lodash/_createAggregator.js +23 -0
  1456. data/test/dummy/node_modules/lodash/_createAssigner.js +37 -0
  1457. data/test/dummy/node_modules/lodash/_createBaseEach.js +32 -0
  1458. data/test/dummy/node_modules/lodash/_createBaseFor.js +25 -0
  1459. data/test/dummy/node_modules/lodash/_createBind.js +28 -0
  1460. data/test/dummy/node_modules/lodash/_createCaseFirst.js +33 -0
  1461. data/test/dummy/node_modules/lodash/_createCompounder.js +24 -0
  1462. data/test/dummy/node_modules/lodash/_createCtor.js +37 -0
  1463. data/test/dummy/node_modules/lodash/_createCurry.js +46 -0
  1464. data/test/dummy/node_modules/lodash/_createFind.js +25 -0
  1465. data/test/dummy/node_modules/lodash/_createFlow.js +85 -0
  1466. data/test/dummy/node_modules/lodash/_createHybrid.js +92 -0
  1467. data/test/dummy/node_modules/lodash/_createInverter.js +17 -0
  1468. data/test/dummy/node_modules/lodash/_createMathOperation.js +38 -0
  1469. data/test/dummy/node_modules/lodash/_createOver.js +31 -0
  1470. data/test/dummy/node_modules/lodash/_createPadding.js +33 -0
  1471. data/test/dummy/node_modules/lodash/_createPartial.js +43 -0
  1472. data/test/dummy/node_modules/lodash/_createRange.js +30 -0
  1473. data/test/dummy/node_modules/lodash/_createRecurry.js +56 -0
  1474. data/test/dummy/node_modules/lodash/_createRelationalOperation.js +20 -0
  1475. data/test/dummy/node_modules/lodash/_createRound.js +33 -0
  1476. data/test/dummy/node_modules/lodash/_createSet.js +19 -0
  1477. data/test/dummy/node_modules/lodash/_createToPairs.js +30 -0
  1478. data/test/dummy/node_modules/lodash/_createWrap.js +107 -0
  1479. data/test/dummy/node_modules/lodash/_deburrLetter.js +71 -0
  1480. data/test/dummy/node_modules/lodash/_defineProperty.js +11 -0
  1481. data/test/dummy/node_modules/lodash/_equalArrays.js +83 -0
  1482. data/test/dummy/node_modules/lodash/_equalByTag.js +113 -0
  1483. data/test/dummy/node_modules/lodash/_equalObjects.js +90 -0
  1484. data/test/dummy/node_modules/lodash/_escapeHtmlChar.js +22 -0
  1485. data/test/dummy/node_modules/lodash/_escapeStringChar.js +22 -0
  1486. data/test/dummy/node_modules/lodash/_freeGlobal.js +4 -0
  1487. data/test/dummy/node_modules/lodash/_getAllKeys.js +16 -0
  1488. data/test/dummy/node_modules/lodash/_getAllKeysIn.js +17 -0
  1489. data/test/dummy/node_modules/lodash/_getData.js +15 -0
  1490. data/test/dummy/node_modules/lodash/_getFuncName.js +31 -0
  1491. data/test/dummy/node_modules/lodash/_getHolder.js +13 -0
  1492. data/test/dummy/node_modules/lodash/_getMapData.js +18 -0
  1493. data/test/dummy/node_modules/lodash/_getMatchData.js +24 -0
  1494. data/test/dummy/node_modules/lodash/_getNative.js +17 -0
  1495. data/test/dummy/node_modules/lodash/_getPrototype.js +6 -0
  1496. data/test/dummy/node_modules/lodash/_getSymbols.js +16 -0
  1497. data/test/dummy/node_modules/lodash/_getSymbolsIn.js +26 -0
  1498. data/test/dummy/node_modules/lodash/_getTag.js +69 -0
  1499. data/test/dummy/node_modules/lodash/_getValue.js +13 -0
  1500. data/test/dummy/node_modules/lodash/_getView.js +33 -0
  1501. data/test/dummy/node_modules/lodash/_getWrapDetails.js +17 -0
  1502. data/test/dummy/node_modules/lodash/_hasPath.js +40 -0
  1503. data/test/dummy/node_modules/lodash/_hasUnicode.js +24 -0
  1504. data/test/dummy/node_modules/lodash/_hasUnicodeWord.js +15 -0
  1505. data/test/dummy/node_modules/lodash/_hashClear.js +14 -0
  1506. data/test/dummy/node_modules/lodash/_hashDelete.js +15 -0
  1507. data/test/dummy/node_modules/lodash/_hashGet.js +30 -0
  1508. data/test/dummy/node_modules/lodash/_hashHas.js +23 -0
  1509. data/test/dummy/node_modules/lodash/_hashSet.js +22 -0
  1510. data/test/dummy/node_modules/lodash/_initCloneArray.js +26 -0
  1511. data/test/dummy/node_modules/lodash/_initCloneByTag.js +80 -0
  1512. data/test/dummy/node_modules/lodash/_initCloneObject.js +18 -0
  1513. data/test/dummy/node_modules/lodash/_insertWrapDetails.js +21 -0
  1514. data/test/dummy/node_modules/lodash/_isFlattenable.js +20 -0
  1515. data/test/dummy/node_modules/lodash/_isHostObject.js +20 -0
  1516. data/test/dummy/node_modules/lodash/_isIndex.js +22 -0
  1517. data/test/dummy/node_modules/lodash/_isIterateeCall.js +30 -0
  1518. data/test/dummy/node_modules/lodash/_isKey.js +29 -0
  1519. data/test/dummy/node_modules/lodash/_isKeyable.js +15 -0
  1520. data/test/dummy/node_modules/lodash/_isLaziable.js +28 -0
  1521. data/test/dummy/node_modules/lodash/_isMaskable.js +14 -0
  1522. data/test/dummy/node_modules/lodash/_isMasked.js +20 -0
  1523. data/test/dummy/node_modules/lodash/_isPrototype.js +18 -0
  1524. data/test/dummy/node_modules/lodash/_isStrictComparable.js +15 -0
  1525. data/test/dummy/node_modules/lodash/_iteratorToArray.js +18 -0
  1526. data/test/dummy/node_modules/lodash/_lazyClone.js +23 -0
  1527. data/test/dummy/node_modules/lodash/_lazyReverse.js +23 -0
  1528. data/test/dummy/node_modules/lodash/_lazyValue.js +73 -0
  1529. data/test/dummy/node_modules/lodash/_listCacheClear.js +12 -0
  1530. data/test/dummy/node_modules/lodash/_listCacheDelete.js +34 -0
  1531. data/test/dummy/node_modules/lodash/_listCacheGet.js +19 -0
  1532. data/test/dummy/node_modules/lodash/_listCacheHas.js +16 -0
  1533. data/test/dummy/node_modules/lodash/_listCacheSet.js +25 -0
  1534. data/test/dummy/node_modules/lodash/_mapCacheClear.js +20 -0
  1535. data/test/dummy/node_modules/lodash/_mapCacheDelete.js +16 -0
  1536. data/test/dummy/node_modules/lodash/_mapCacheGet.js +16 -0
  1537. data/test/dummy/node_modules/lodash/_mapCacheHas.js +16 -0
  1538. data/test/dummy/node_modules/lodash/_mapCacheSet.js +18 -0
  1539. data/test/dummy/node_modules/lodash/_mapToArray.js +18 -0
  1540. data/test/dummy/node_modules/lodash/_matchesStrictComparable.js +20 -0
  1541. data/test/dummy/node_modules/lodash/_mergeData.js +90 -0
  1542. data/test/dummy/node_modules/lodash/_mergeDefaults.js +27 -0
  1543. data/test/dummy/node_modules/lodash/_metaMap.js +6 -0
  1544. data/test/dummy/node_modules/lodash/_nativeCreate.js +6 -0
  1545. data/test/dummy/node_modules/lodash/_nativeKeys.js +6 -0
  1546. data/test/dummy/node_modules/lodash/_nativeKeysIn.js +20 -0
  1547. data/test/dummy/node_modules/lodash/_nodeUtil.js +22 -0
  1548. data/test/dummy/node_modules/lodash/_overArg.js +15 -0
  1549. data/test/dummy/node_modules/lodash/_parent.js +16 -0
  1550. data/test/dummy/node_modules/lodash/_reEscape.js +4 -0
  1551. data/test/dummy/node_modules/lodash/_reEvaluate.js +4 -0
  1552. data/test/dummy/node_modules/lodash/_reInterpolate.js +4 -0
  1553. data/test/dummy/node_modules/lodash/_realNames.js +4 -0
  1554. data/test/dummy/node_modules/lodash/_reorder.js +29 -0
  1555. data/test/dummy/node_modules/lodash/_replaceHolders.js +29 -0
  1556. data/test/dummy/node_modules/lodash/_root.js +9 -0
  1557. data/test/dummy/node_modules/lodash/_setCacheAdd.js +19 -0
  1558. data/test/dummy/node_modules/lodash/_setCacheHas.js +14 -0
  1559. data/test/dummy/node_modules/lodash/_setData.js +42 -0
  1560. data/test/dummy/node_modules/lodash/_setToArray.js +18 -0
  1561. data/test/dummy/node_modules/lodash/_setToPairs.js +18 -0
  1562. data/test/dummy/node_modules/lodash/_setWrapToString.js +27 -0
  1563. data/test/dummy/node_modules/lodash/_stackClear.js +14 -0
  1564. data/test/dummy/node_modules/lodash/_stackDelete.js +14 -0
  1565. data/test/dummy/node_modules/lodash/_stackGet.js +14 -0
  1566. data/test/dummy/node_modules/lodash/_stackHas.js +14 -0
  1567. data/test/dummy/node_modules/lodash/_stackSet.js +32 -0
  1568. data/test/dummy/node_modules/lodash/_stringSize.js +18 -0
  1569. data/test/dummy/node_modules/lodash/_stringToArray.js +18 -0
  1570. data/test/dummy/node_modules/lodash/_stringToPath.js +31 -0
  1571. data/test/dummy/node_modules/lodash/_toKey.js +21 -0
  1572. data/test/dummy/node_modules/lodash/_toSource.js +26 -0
  1573. data/test/dummy/node_modules/lodash/_unescapeHtmlChar.js +22 -0
  1574. data/test/dummy/node_modules/lodash/_unicodeSize.js +42 -0
  1575. data/test/dummy/node_modules/lodash/_unicodeToArray.js +38 -0
  1576. data/test/dummy/node_modules/lodash/_unicodeWords.js +63 -0
  1577. data/test/dummy/node_modules/lodash/_updateWrapDetails.js +46 -0
  1578. data/test/dummy/node_modules/lodash/_wrapperClone.js +23 -0
  1579. data/test/dummy/node_modules/lodash/add.js +22 -0
  1580. data/test/dummy/node_modules/lodash/after.js +42 -0
  1581. data/test/dummy/node_modules/lodash/array.js +67 -0
  1582. data/test/dummy/node_modules/lodash/ary.js +29 -0
  1583. data/test/dummy/node_modules/lodash/assign.js +64 -0
  1584. data/test/dummy/node_modules/lodash/assignIn.js +40 -0
  1585. data/test/dummy/node_modules/lodash/assignInWith.js +38 -0
  1586. data/test/dummy/node_modules/lodash/assignWith.js +37 -0
  1587. data/test/dummy/node_modules/lodash/at.js +26 -0
  1588. data/test/dummy/node_modules/lodash/attempt.js +35 -0
  1589. data/test/dummy/node_modules/lodash/before.js +40 -0
  1590. data/test/dummy/node_modules/lodash/bind.js +57 -0
  1591. data/test/dummy/node_modules/lodash/bindAll.js +41 -0
  1592. data/test/dummy/node_modules/lodash/bindKey.js +68 -0
  1593. data/test/dummy/node_modules/lodash/camelCase.js +29 -0
  1594. data/test/dummy/node_modules/lodash/capitalize.js +23 -0
  1595. data/test/dummy/node_modules/lodash/castArray.js +44 -0
  1596. data/test/dummy/node_modules/lodash/ceil.js +26 -0
  1597. data/test/dummy/node_modules/lodash/chain.js +38 -0
  1598. data/test/dummy/node_modules/lodash/chunk.js +50 -0
  1599. data/test/dummy/node_modules/lodash/clamp.js +39 -0
  1600. data/test/dummy/node_modules/lodash/clone.js +33 -0
  1601. data/test/dummy/node_modules/lodash/cloneDeep.js +25 -0
  1602. data/test/dummy/node_modules/lodash/cloneDeepWith.js +35 -0
  1603. data/test/dummy/node_modules/lodash/cloneWith.js +38 -0
  1604. data/test/dummy/node_modules/lodash/collection.js +30 -0
  1605. data/test/dummy/node_modules/lodash/commit.js +33 -0
  1606. data/test/dummy/node_modules/lodash/compact.js +31 -0
  1607. data/test/dummy/node_modules/lodash/concat.js +42 -0
  1608. data/test/dummy/node_modules/lodash/cond.js +60 -0
  1609. data/test/dummy/node_modules/lodash/conforms.js +32 -0
  1610. data/test/dummy/node_modules/lodash/conformsTo.js +32 -0
  1611. data/test/dummy/node_modules/lodash/constant.js +26 -0
  1612. data/test/dummy/node_modules/lodash/core.js +3806 -0
  1613. data/test/dummy/node_modules/lodash/core.min.js +28 -0
  1614. data/test/dummy/node_modules/lodash/countBy.js +36 -0
  1615. data/test/dummy/node_modules/lodash/create.js +43 -0
  1616. data/test/dummy/node_modules/lodash/curry.js +57 -0
  1617. data/test/dummy/node_modules/lodash/curryRight.js +54 -0
  1618. data/test/dummy/node_modules/lodash/date.js +3 -0
  1619. data/test/dummy/node_modules/lodash/debounce.js +188 -0
  1620. data/test/dummy/node_modules/lodash/deburr.js +43 -0
  1621. data/test/dummy/node_modules/lodash/defaultTo.js +25 -0
  1622. data/test/dummy/node_modules/lodash/defaults.js +32 -0
  1623. data/test/dummy/node_modules/lodash/defaultsDeep.js +30 -0
  1624. data/test/dummy/node_modules/lodash/defer.js +26 -0
  1625. data/test/dummy/node_modules/lodash/delay.js +28 -0
  1626. data/test/dummy/node_modules/lodash/difference.js +33 -0
  1627. data/test/dummy/node_modules/lodash/differenceBy.js +43 -0
  1628. data/test/dummy/node_modules/lodash/differenceWith.js +40 -0
  1629. data/test/dummy/node_modules/lodash/divide.js +22 -0
  1630. data/test/dummy/node_modules/lodash/drop.js +38 -0
  1631. data/test/dummy/node_modules/lodash/dropRight.js +39 -0
  1632. data/test/dummy/node_modules/lodash/dropRightWhile.js +45 -0
  1633. data/test/dummy/node_modules/lodash/dropWhile.js +46 -0
  1634. data/test/dummy/node_modules/lodash/each.js +1 -0
  1635. data/test/dummy/node_modules/lodash/eachRight.js +1 -0
  1636. data/test/dummy/node_modules/lodash/endsWith.js +43 -0
  1637. data/test/dummy/node_modules/lodash/entries.js +1 -0
  1638. data/test/dummy/node_modules/lodash/entriesIn.js +1 -0
  1639. data/test/dummy/node_modules/lodash/eq.js +37 -0
  1640. data/test/dummy/node_modules/lodash/escape.js +49 -0
  1641. data/test/dummy/node_modules/lodash/escapeRegExp.js +32 -0
  1642. data/test/dummy/node_modules/lodash/every.js +57 -0
  1643. data/test/dummy/node_modules/lodash/extend.js +1 -0
  1644. data/test/dummy/node_modules/lodash/extendWith.js +1 -0
  1645. data/test/dummy/node_modules/lodash/fill.js +45 -0
  1646. data/test/dummy/node_modules/lodash/filter.js +49 -0
  1647. data/test/dummy/node_modules/lodash/find.js +43 -0
  1648. data/test/dummy/node_modules/lodash/findIndex.js +56 -0
  1649. data/test/dummy/node_modules/lodash/findKey.js +44 -0
  1650. data/test/dummy/node_modules/lodash/findLast.js +26 -0
  1651. data/test/dummy/node_modules/lodash/findLastIndex.js +60 -0
  1652. data/test/dummy/node_modules/lodash/findLastKey.js +44 -0
  1653. data/test/dummy/node_modules/lodash/first.js +1 -0
  1654. data/test/dummy/node_modules/lodash/flatMap.js +30 -0
  1655. data/test/dummy/node_modules/lodash/flatMapDeep.js +32 -0
  1656. data/test/dummy/node_modules/lodash/flatMapDepth.js +32 -0
  1657. data/test/dummy/node_modules/lodash/flatten.js +22 -0
  1658. data/test/dummy/node_modules/lodash/flattenDeep.js +25 -0
  1659. data/test/dummy/node_modules/lodash/flattenDepth.js +33 -0
  1660. data/test/dummy/node_modules/lodash/flip.js +28 -0
  1661. data/test/dummy/node_modules/lodash/floor.js +26 -0
  1662. data/test/dummy/node_modules/lodash/flow.js +27 -0
  1663. data/test/dummy/node_modules/lodash/flowRight.js +26 -0
  1664. data/test/dummy/node_modules/lodash/forEach.js +41 -0
  1665. data/test/dummy/node_modules/lodash/forEachRight.js +31 -0
  1666. data/test/dummy/node_modules/lodash/forIn.js +39 -0
  1667. data/test/dummy/node_modules/lodash/forInRight.js +37 -0
  1668. data/test/dummy/node_modules/lodash/forOwn.js +36 -0
  1669. data/test/dummy/node_modules/lodash/forOwnRight.js +34 -0
  1670. data/test/dummy/node_modules/lodash/fp.js +2 -0
  1671. data/test/dummy/node_modules/lodash/fp/F.js +1 -0
  1672. data/test/dummy/node_modules/lodash/fp/T.js +1 -0
  1673. data/test/dummy/node_modules/lodash/fp/__.js +1 -0
  1674. data/test/dummy/node_modules/lodash/fp/_baseConvert.js +535 -0
  1675. data/test/dummy/node_modules/lodash/fp/_convertBrowser.js +18 -0
  1676. data/test/dummy/node_modules/lodash/fp/_falseOptions.js +7 -0
  1677. data/test/dummy/node_modules/lodash/fp/_mapping.js +362 -0
  1678. data/test/dummy/node_modules/lodash/fp/_util.js +15 -0
  1679. data/test/dummy/node_modules/lodash/fp/add.js +5 -0
  1680. data/test/dummy/node_modules/lodash/fp/after.js +5 -0
  1681. data/test/dummy/node_modules/lodash/fp/all.js +1 -0
  1682. data/test/dummy/node_modules/lodash/fp/allPass.js +1 -0
  1683. data/test/dummy/node_modules/lodash/fp/always.js +1 -0
  1684. data/test/dummy/node_modules/lodash/fp/any.js +1 -0
  1685. data/test/dummy/node_modules/lodash/fp/anyPass.js +1 -0
  1686. data/test/dummy/node_modules/lodash/fp/apply.js +1 -0
  1687. data/test/dummy/node_modules/lodash/fp/array.js +2 -0
  1688. data/test/dummy/node_modules/lodash/fp/ary.js +5 -0
  1689. data/test/dummy/node_modules/lodash/fp/assign.js +5 -0
  1690. data/test/dummy/node_modules/lodash/fp/assignAll.js +5 -0
  1691. data/test/dummy/node_modules/lodash/fp/assignAllWith.js +5 -0
  1692. data/test/dummy/node_modules/lodash/fp/assignIn.js +5 -0
  1693. data/test/dummy/node_modules/lodash/fp/assignInAll.js +5 -0
  1694. data/test/dummy/node_modules/lodash/fp/assignInAllWith.js +5 -0
  1695. data/test/dummy/node_modules/lodash/fp/assignInWith.js +5 -0
  1696. data/test/dummy/node_modules/lodash/fp/assignWith.js +5 -0
  1697. data/test/dummy/node_modules/lodash/fp/assoc.js +1 -0
  1698. data/test/dummy/node_modules/lodash/fp/assocPath.js +1 -0
  1699. data/test/dummy/node_modules/lodash/fp/at.js +5 -0
  1700. data/test/dummy/node_modules/lodash/fp/attempt.js +5 -0
  1701. data/test/dummy/node_modules/lodash/fp/before.js +5 -0
  1702. data/test/dummy/node_modules/lodash/fp/bind.js +5 -0
  1703. data/test/dummy/node_modules/lodash/fp/bindAll.js +5 -0
  1704. data/test/dummy/node_modules/lodash/fp/bindKey.js +5 -0
  1705. data/test/dummy/node_modules/lodash/fp/camelCase.js +5 -0
  1706. data/test/dummy/node_modules/lodash/fp/capitalize.js +5 -0
  1707. data/test/dummy/node_modules/lodash/fp/castArray.js +5 -0
  1708. data/test/dummy/node_modules/lodash/fp/ceil.js +5 -0
  1709. data/test/dummy/node_modules/lodash/fp/chain.js +5 -0
  1710. data/test/dummy/node_modules/lodash/fp/chunk.js +5 -0
  1711. data/test/dummy/node_modules/lodash/fp/clamp.js +5 -0
  1712. data/test/dummy/node_modules/lodash/fp/clone.js +5 -0
  1713. data/test/dummy/node_modules/lodash/fp/cloneDeep.js +5 -0
  1714. data/test/dummy/node_modules/lodash/fp/cloneDeepWith.js +5 -0
  1715. data/test/dummy/node_modules/lodash/fp/cloneWith.js +5 -0
  1716. data/test/dummy/node_modules/lodash/fp/collection.js +2 -0
  1717. data/test/dummy/node_modules/lodash/fp/commit.js +5 -0
  1718. data/test/dummy/node_modules/lodash/fp/compact.js +5 -0
  1719. data/test/dummy/node_modules/lodash/fp/complement.js +1 -0
  1720. data/test/dummy/node_modules/lodash/fp/compose.js +1 -0
  1721. data/test/dummy/node_modules/lodash/fp/concat.js +5 -0
  1722. data/test/dummy/node_modules/lodash/fp/cond.js +5 -0
  1723. data/test/dummy/node_modules/lodash/fp/conforms.js +1 -0
  1724. data/test/dummy/node_modules/lodash/fp/conformsTo.js +5 -0
  1725. data/test/dummy/node_modules/lodash/fp/constant.js +5 -0
  1726. data/test/dummy/node_modules/lodash/fp/contains.js +1 -0
  1727. data/test/dummy/node_modules/lodash/fp/convert.js +18 -0
  1728. data/test/dummy/node_modules/lodash/fp/countBy.js +5 -0
  1729. data/test/dummy/node_modules/lodash/fp/create.js +5 -0
  1730. data/test/dummy/node_modules/lodash/fp/curry.js +5 -0
  1731. data/test/dummy/node_modules/lodash/fp/curryN.js +5 -0
  1732. data/test/dummy/node_modules/lodash/fp/curryRight.js +5 -0
  1733. data/test/dummy/node_modules/lodash/fp/curryRightN.js +5 -0
  1734. data/test/dummy/node_modules/lodash/fp/date.js +2 -0
  1735. data/test/dummy/node_modules/lodash/fp/debounce.js +5 -0
  1736. data/test/dummy/node_modules/lodash/fp/deburr.js +5 -0
  1737. data/test/dummy/node_modules/lodash/fp/defaultTo.js +5 -0
  1738. data/test/dummy/node_modules/lodash/fp/defaults.js +5 -0
  1739. data/test/dummy/node_modules/lodash/fp/defaultsAll.js +5 -0
  1740. data/test/dummy/node_modules/lodash/fp/defaultsDeep.js +5 -0
  1741. data/test/dummy/node_modules/lodash/fp/defaultsDeepAll.js +5 -0
  1742. data/test/dummy/node_modules/lodash/fp/defer.js +5 -0
  1743. data/test/dummy/node_modules/lodash/fp/delay.js +5 -0
  1744. data/test/dummy/node_modules/lodash/fp/difference.js +5 -0
  1745. data/test/dummy/node_modules/lodash/fp/differenceBy.js +5 -0
  1746. data/test/dummy/node_modules/lodash/fp/differenceWith.js +5 -0
  1747. data/test/dummy/node_modules/lodash/fp/dissoc.js +1 -0
  1748. data/test/dummy/node_modules/lodash/fp/dissocPath.js +1 -0
  1749. data/test/dummy/node_modules/lodash/fp/divide.js +5 -0
  1750. data/test/dummy/node_modules/lodash/fp/drop.js +5 -0
  1751. data/test/dummy/node_modules/lodash/fp/dropLast.js +1 -0
  1752. data/test/dummy/node_modules/lodash/fp/dropLastWhile.js +1 -0
  1753. data/test/dummy/node_modules/lodash/fp/dropRight.js +5 -0
  1754. data/test/dummy/node_modules/lodash/fp/dropRightWhile.js +5 -0
  1755. data/test/dummy/node_modules/lodash/fp/dropWhile.js +5 -0
  1756. data/test/dummy/node_modules/lodash/fp/each.js +1 -0
  1757. data/test/dummy/node_modules/lodash/fp/eachRight.js +1 -0
  1758. data/test/dummy/node_modules/lodash/fp/endsWith.js +5 -0
  1759. data/test/dummy/node_modules/lodash/fp/entries.js +1 -0
  1760. data/test/dummy/node_modules/lodash/fp/entriesIn.js +1 -0
  1761. data/test/dummy/node_modules/lodash/fp/eq.js +5 -0
  1762. data/test/dummy/node_modules/lodash/fp/equals.js +1 -0
  1763. data/test/dummy/node_modules/lodash/fp/escape.js +5 -0
  1764. data/test/dummy/node_modules/lodash/fp/escapeRegExp.js +5 -0
  1765. data/test/dummy/node_modules/lodash/fp/every.js +5 -0
  1766. data/test/dummy/node_modules/lodash/fp/extend.js +1 -0
  1767. data/test/dummy/node_modules/lodash/fp/extendAll.js +1 -0
  1768. data/test/dummy/node_modules/lodash/fp/extendAllWith.js +1 -0
  1769. data/test/dummy/node_modules/lodash/fp/extendWith.js +1 -0
  1770. data/test/dummy/node_modules/lodash/fp/fill.js +5 -0
  1771. data/test/dummy/node_modules/lodash/fp/filter.js +5 -0
  1772. data/test/dummy/node_modules/lodash/fp/find.js +5 -0
  1773. data/test/dummy/node_modules/lodash/fp/findFrom.js +5 -0
  1774. data/test/dummy/node_modules/lodash/fp/findIndex.js +5 -0
  1775. data/test/dummy/node_modules/lodash/fp/findIndexFrom.js +5 -0
  1776. data/test/dummy/node_modules/lodash/fp/findKey.js +5 -0
  1777. data/test/dummy/node_modules/lodash/fp/findLast.js +5 -0
  1778. data/test/dummy/node_modules/lodash/fp/findLastFrom.js +5 -0
  1779. data/test/dummy/node_modules/lodash/fp/findLastIndex.js +5 -0
  1780. data/test/dummy/node_modules/lodash/fp/findLastIndexFrom.js +5 -0
  1781. data/test/dummy/node_modules/lodash/fp/findLastKey.js +5 -0
  1782. data/test/dummy/node_modules/lodash/fp/first.js +1 -0
  1783. data/test/dummy/node_modules/lodash/fp/flatMap.js +5 -0
  1784. data/test/dummy/node_modules/lodash/fp/flatMapDeep.js +5 -0
  1785. data/test/dummy/node_modules/lodash/fp/flatMapDepth.js +5 -0
  1786. data/test/dummy/node_modules/lodash/fp/flatten.js +5 -0
  1787. data/test/dummy/node_modules/lodash/fp/flattenDeep.js +5 -0
  1788. data/test/dummy/node_modules/lodash/fp/flattenDepth.js +5 -0
  1789. data/test/dummy/node_modules/lodash/fp/flip.js +5 -0
  1790. data/test/dummy/node_modules/lodash/fp/floor.js +5 -0
  1791. data/test/dummy/node_modules/lodash/fp/flow.js +5 -0
  1792. data/test/dummy/node_modules/lodash/fp/flowRight.js +5 -0
  1793. data/test/dummy/node_modules/lodash/fp/forEach.js +5 -0
  1794. data/test/dummy/node_modules/lodash/fp/forEachRight.js +5 -0
  1795. data/test/dummy/node_modules/lodash/fp/forIn.js +5 -0
  1796. data/test/dummy/node_modules/lodash/fp/forInRight.js +5 -0
  1797. data/test/dummy/node_modules/lodash/fp/forOwn.js +5 -0
  1798. data/test/dummy/node_modules/lodash/fp/forOwnRight.js +5 -0
  1799. data/test/dummy/node_modules/lodash/fp/fromPairs.js +5 -0
  1800. data/test/dummy/node_modules/lodash/fp/function.js +2 -0
  1801. data/test/dummy/node_modules/lodash/fp/functions.js +5 -0
  1802. data/test/dummy/node_modules/lodash/fp/functionsIn.js +5 -0
  1803. data/test/dummy/node_modules/lodash/fp/get.js +5 -0
  1804. data/test/dummy/node_modules/lodash/fp/getOr.js +5 -0
  1805. data/test/dummy/node_modules/lodash/fp/groupBy.js +5 -0
  1806. data/test/dummy/node_modules/lodash/fp/gt.js +5 -0
  1807. data/test/dummy/node_modules/lodash/fp/gte.js +5 -0
  1808. data/test/dummy/node_modules/lodash/fp/has.js +5 -0
  1809. data/test/dummy/node_modules/lodash/fp/hasIn.js +5 -0
  1810. data/test/dummy/node_modules/lodash/fp/head.js +5 -0
  1811. data/test/dummy/node_modules/lodash/fp/identical.js +1 -0
  1812. data/test/dummy/node_modules/lodash/fp/identity.js +5 -0
  1813. data/test/dummy/node_modules/lodash/fp/inRange.js +5 -0
  1814. data/test/dummy/node_modules/lodash/fp/includes.js +5 -0
  1815. data/test/dummy/node_modules/lodash/fp/includesFrom.js +5 -0
  1816. data/test/dummy/node_modules/lodash/fp/indexBy.js +1 -0
  1817. data/test/dummy/node_modules/lodash/fp/indexOf.js +5 -0
  1818. data/test/dummy/node_modules/lodash/fp/indexOfFrom.js +5 -0
  1819. data/test/dummy/node_modules/lodash/fp/init.js +1 -0
  1820. data/test/dummy/node_modules/lodash/fp/initial.js +5 -0
  1821. data/test/dummy/node_modules/lodash/fp/intersection.js +5 -0
  1822. data/test/dummy/node_modules/lodash/fp/intersectionBy.js +5 -0
  1823. data/test/dummy/node_modules/lodash/fp/intersectionWith.js +5 -0
  1824. data/test/dummy/node_modules/lodash/fp/invert.js +5 -0
  1825. data/test/dummy/node_modules/lodash/fp/invertBy.js +5 -0
  1826. data/test/dummy/node_modules/lodash/fp/invertObj.js +1 -0
  1827. data/test/dummy/node_modules/lodash/fp/invoke.js +5 -0
  1828. data/test/dummy/node_modules/lodash/fp/invokeArgs.js +5 -0
  1829. data/test/dummy/node_modules/lodash/fp/invokeArgsMap.js +5 -0
  1830. data/test/dummy/node_modules/lodash/fp/invokeMap.js +5 -0
  1831. data/test/dummy/node_modules/lodash/fp/isArguments.js +5 -0
  1832. data/test/dummy/node_modules/lodash/fp/isArray.js +5 -0
  1833. data/test/dummy/node_modules/lodash/fp/isArrayBuffer.js +5 -0
  1834. data/test/dummy/node_modules/lodash/fp/isArrayLike.js +5 -0
  1835. data/test/dummy/node_modules/lodash/fp/isArrayLikeObject.js +5 -0
  1836. data/test/dummy/node_modules/lodash/fp/isBoolean.js +5 -0
  1837. data/test/dummy/node_modules/lodash/fp/isBuffer.js +5 -0
  1838. data/test/dummy/node_modules/lodash/fp/isDate.js +5 -0
  1839. data/test/dummy/node_modules/lodash/fp/isElement.js +5 -0
  1840. data/test/dummy/node_modules/lodash/fp/isEmpty.js +5 -0
  1841. data/test/dummy/node_modules/lodash/fp/isEqual.js +5 -0
  1842. data/test/dummy/node_modules/lodash/fp/isEqualWith.js +5 -0
  1843. data/test/dummy/node_modules/lodash/fp/isError.js +5 -0
  1844. data/test/dummy/node_modules/lodash/fp/isFinite.js +5 -0
  1845. data/test/dummy/node_modules/lodash/fp/isFunction.js +5 -0
  1846. data/test/dummy/node_modules/lodash/fp/isInteger.js +5 -0
  1847. data/test/dummy/node_modules/lodash/fp/isLength.js +5 -0
  1848. data/test/dummy/node_modules/lodash/fp/isMap.js +5 -0
  1849. data/test/dummy/node_modules/lodash/fp/isMatch.js +5 -0
  1850. data/test/dummy/node_modules/lodash/fp/isMatchWith.js +5 -0
  1851. data/test/dummy/node_modules/lodash/fp/isNaN.js +5 -0
  1852. data/test/dummy/node_modules/lodash/fp/isNative.js +5 -0
  1853. data/test/dummy/node_modules/lodash/fp/isNil.js +5 -0
  1854. data/test/dummy/node_modules/lodash/fp/isNull.js +5 -0
  1855. data/test/dummy/node_modules/lodash/fp/isNumber.js +5 -0
  1856. data/test/dummy/node_modules/lodash/fp/isObject.js +5 -0
  1857. data/test/dummy/node_modules/lodash/fp/isObjectLike.js +5 -0
  1858. data/test/dummy/node_modules/lodash/fp/isPlainObject.js +5 -0
  1859. data/test/dummy/node_modules/lodash/fp/isRegExp.js +5 -0
  1860. data/test/dummy/node_modules/lodash/fp/isSafeInteger.js +5 -0
  1861. data/test/dummy/node_modules/lodash/fp/isSet.js +5 -0
  1862. data/test/dummy/node_modules/lodash/fp/isString.js +5 -0
  1863. data/test/dummy/node_modules/lodash/fp/isSymbol.js +5 -0
  1864. data/test/dummy/node_modules/lodash/fp/isTypedArray.js +5 -0
  1865. data/test/dummy/node_modules/lodash/fp/isUndefined.js +5 -0
  1866. data/test/dummy/node_modules/lodash/fp/isWeakMap.js +5 -0
  1867. data/test/dummy/node_modules/lodash/fp/isWeakSet.js +5 -0
  1868. data/test/dummy/node_modules/lodash/fp/iteratee.js +5 -0
  1869. data/test/dummy/node_modules/lodash/fp/join.js +5 -0
  1870. data/test/dummy/node_modules/lodash/fp/juxt.js +1 -0
  1871. data/test/dummy/node_modules/lodash/fp/kebabCase.js +5 -0
  1872. data/test/dummy/node_modules/lodash/fp/keyBy.js +5 -0
  1873. data/test/dummy/node_modules/lodash/fp/keys.js +5 -0
  1874. data/test/dummy/node_modules/lodash/fp/keysIn.js +5 -0
  1875. data/test/dummy/node_modules/lodash/fp/lang.js +2 -0
  1876. data/test/dummy/node_modules/lodash/fp/last.js +5 -0
  1877. data/test/dummy/node_modules/lodash/fp/lastIndexOf.js +5 -0
  1878. data/test/dummy/node_modules/lodash/fp/lastIndexOfFrom.js +5 -0
  1879. data/test/dummy/node_modules/lodash/fp/lowerCase.js +5 -0
  1880. data/test/dummy/node_modules/lodash/fp/lowerFirst.js +5 -0
  1881. data/test/dummy/node_modules/lodash/fp/lt.js +5 -0
  1882. data/test/dummy/node_modules/lodash/fp/lte.js +5 -0
  1883. data/test/dummy/node_modules/lodash/fp/map.js +5 -0
  1884. data/test/dummy/node_modules/lodash/fp/mapKeys.js +5 -0
  1885. data/test/dummy/node_modules/lodash/fp/mapValues.js +5 -0
  1886. data/test/dummy/node_modules/lodash/fp/matches.js +1 -0
  1887. data/test/dummy/node_modules/lodash/fp/matchesProperty.js +5 -0
  1888. data/test/dummy/node_modules/lodash/fp/math.js +2 -0
  1889. data/test/dummy/node_modules/lodash/fp/max.js +5 -0
  1890. data/test/dummy/node_modules/lodash/fp/maxBy.js +5 -0
  1891. data/test/dummy/node_modules/lodash/fp/mean.js +5 -0
  1892. data/test/dummy/node_modules/lodash/fp/meanBy.js +5 -0
  1893. data/test/dummy/node_modules/lodash/fp/memoize.js +5 -0
  1894. data/test/dummy/node_modules/lodash/fp/merge.js +5 -0
  1895. data/test/dummy/node_modules/lodash/fp/mergeAll.js +5 -0
  1896. data/test/dummy/node_modules/lodash/fp/mergeAllWith.js +5 -0
  1897. data/test/dummy/node_modules/lodash/fp/mergeWith.js +5 -0
  1898. data/test/dummy/node_modules/lodash/fp/method.js +5 -0
  1899. data/test/dummy/node_modules/lodash/fp/methodOf.js +5 -0
  1900. data/test/dummy/node_modules/lodash/fp/min.js +5 -0
  1901. data/test/dummy/node_modules/lodash/fp/minBy.js +5 -0
  1902. data/test/dummy/node_modules/lodash/fp/mixin.js +5 -0
  1903. data/test/dummy/node_modules/lodash/fp/multiply.js +5 -0
  1904. data/test/dummy/node_modules/lodash/fp/nAry.js +1 -0
  1905. data/test/dummy/node_modules/lodash/fp/negate.js +5 -0
  1906. data/test/dummy/node_modules/lodash/fp/next.js +5 -0
  1907. data/test/dummy/node_modules/lodash/fp/noop.js +5 -0
  1908. data/test/dummy/node_modules/lodash/fp/now.js +5 -0
  1909. data/test/dummy/node_modules/lodash/fp/nth.js +5 -0
  1910. data/test/dummy/node_modules/lodash/fp/nthArg.js +5 -0
  1911. data/test/dummy/node_modules/lodash/fp/number.js +2 -0
  1912. data/test/dummy/node_modules/lodash/fp/object.js +2 -0
  1913. data/test/dummy/node_modules/lodash/fp/omit.js +5 -0
  1914. data/test/dummy/node_modules/lodash/fp/omitAll.js +1 -0
  1915. data/test/dummy/node_modules/lodash/fp/omitBy.js +5 -0
  1916. data/test/dummy/node_modules/lodash/fp/once.js +5 -0
  1917. data/test/dummy/node_modules/lodash/fp/orderBy.js +5 -0
  1918. data/test/dummy/node_modules/lodash/fp/over.js +5 -0
  1919. data/test/dummy/node_modules/lodash/fp/overArgs.js +5 -0
  1920. data/test/dummy/node_modules/lodash/fp/overEvery.js +5 -0
  1921. data/test/dummy/node_modules/lodash/fp/overSome.js +5 -0
  1922. data/test/dummy/node_modules/lodash/fp/pad.js +5 -0
  1923. data/test/dummy/node_modules/lodash/fp/padChars.js +5 -0
  1924. data/test/dummy/node_modules/lodash/fp/padCharsEnd.js +5 -0
  1925. data/test/dummy/node_modules/lodash/fp/padCharsStart.js +5 -0
  1926. data/test/dummy/node_modules/lodash/fp/padEnd.js +5 -0
  1927. data/test/dummy/node_modules/lodash/fp/padStart.js +5 -0
  1928. data/test/dummy/node_modules/lodash/fp/parseInt.js +5 -0
  1929. data/test/dummy/node_modules/lodash/fp/partial.js +5 -0
  1930. data/test/dummy/node_modules/lodash/fp/partialRight.js +5 -0
  1931. data/test/dummy/node_modules/lodash/fp/partition.js +5 -0
  1932. data/test/dummy/node_modules/lodash/fp/path.js +1 -0
  1933. data/test/dummy/node_modules/lodash/fp/pathEq.js +1 -0
  1934. data/test/dummy/node_modules/lodash/fp/pathOr.js +1 -0
  1935. data/test/dummy/node_modules/lodash/fp/paths.js +1 -0
  1936. data/test/dummy/node_modules/lodash/fp/pick.js +5 -0
  1937. data/test/dummy/node_modules/lodash/fp/pickAll.js +1 -0
  1938. data/test/dummy/node_modules/lodash/fp/pickBy.js +5 -0
  1939. data/test/dummy/node_modules/lodash/fp/pipe.js +1 -0
  1940. data/test/dummy/node_modules/lodash/fp/placeholder.js +6 -0
  1941. data/test/dummy/node_modules/lodash/fp/plant.js +5 -0
  1942. data/test/dummy/node_modules/lodash/fp/pluck.js +1 -0
  1943. data/test/dummy/node_modules/lodash/fp/prop.js +1 -0
  1944. data/test/dummy/node_modules/lodash/fp/propEq.js +1 -0
  1945. data/test/dummy/node_modules/lodash/fp/propOr.js +1 -0
  1946. data/test/dummy/node_modules/lodash/fp/property.js +1 -0
  1947. data/test/dummy/node_modules/lodash/fp/propertyOf.js +5 -0
  1948. data/test/dummy/node_modules/lodash/fp/props.js +1 -0
  1949. data/test/dummy/node_modules/lodash/fp/pull.js +5 -0
  1950. data/test/dummy/node_modules/lodash/fp/pullAll.js +5 -0
  1951. data/test/dummy/node_modules/lodash/fp/pullAllBy.js +5 -0
  1952. data/test/dummy/node_modules/lodash/fp/pullAllWith.js +5 -0
  1953. data/test/dummy/node_modules/lodash/fp/pullAt.js +5 -0
  1954. data/test/dummy/node_modules/lodash/fp/random.js +5 -0
  1955. data/test/dummy/node_modules/lodash/fp/range.js +5 -0
  1956. data/test/dummy/node_modules/lodash/fp/rangeRight.js +5 -0
  1957. data/test/dummy/node_modules/lodash/fp/rearg.js +5 -0
  1958. data/test/dummy/node_modules/lodash/fp/reduce.js +5 -0
  1959. data/test/dummy/node_modules/lodash/fp/reduceRight.js +5 -0
  1960. data/test/dummy/node_modules/lodash/fp/reject.js +5 -0
  1961. data/test/dummy/node_modules/lodash/fp/remove.js +5 -0
  1962. data/test/dummy/node_modules/lodash/fp/repeat.js +5 -0
  1963. data/test/dummy/node_modules/lodash/fp/replace.js +5 -0
  1964. data/test/dummy/node_modules/lodash/fp/rest.js +5 -0
  1965. data/test/dummy/node_modules/lodash/fp/restFrom.js +5 -0
  1966. data/test/dummy/node_modules/lodash/fp/result.js +5 -0
  1967. data/test/dummy/node_modules/lodash/fp/reverse.js +5 -0
  1968. data/test/dummy/node_modules/lodash/fp/round.js +5 -0
  1969. data/test/dummy/node_modules/lodash/fp/sample.js +5 -0
  1970. data/test/dummy/node_modules/lodash/fp/sampleSize.js +5 -0
  1971. data/test/dummy/node_modules/lodash/fp/seq.js +2 -0
  1972. data/test/dummy/node_modules/lodash/fp/set.js +5 -0
  1973. data/test/dummy/node_modules/lodash/fp/setWith.js +5 -0
  1974. data/test/dummy/node_modules/lodash/fp/shuffle.js +5 -0
  1975. data/test/dummy/node_modules/lodash/fp/size.js +5 -0
  1976. data/test/dummy/node_modules/lodash/fp/slice.js +5 -0
  1977. data/test/dummy/node_modules/lodash/fp/snakeCase.js +5 -0
  1978. data/test/dummy/node_modules/lodash/fp/some.js +5 -0
  1979. data/test/dummy/node_modules/lodash/fp/sortBy.js +5 -0
  1980. data/test/dummy/node_modules/lodash/fp/sortedIndex.js +5 -0
  1981. data/test/dummy/node_modules/lodash/fp/sortedIndexBy.js +5 -0
  1982. data/test/dummy/node_modules/lodash/fp/sortedIndexOf.js +5 -0
  1983. data/test/dummy/node_modules/lodash/fp/sortedLastIndex.js +5 -0
  1984. data/test/dummy/node_modules/lodash/fp/sortedLastIndexBy.js +5 -0
  1985. data/test/dummy/node_modules/lodash/fp/sortedLastIndexOf.js +5 -0
  1986. data/test/dummy/node_modules/lodash/fp/sortedUniq.js +5 -0
  1987. data/test/dummy/node_modules/lodash/fp/sortedUniqBy.js +5 -0
  1988. data/test/dummy/node_modules/lodash/fp/split.js +5 -0
  1989. data/test/dummy/node_modules/lodash/fp/spread.js +5 -0
  1990. data/test/dummy/node_modules/lodash/fp/spreadFrom.js +5 -0
  1991. data/test/dummy/node_modules/lodash/fp/startCase.js +5 -0
  1992. data/test/dummy/node_modules/lodash/fp/startsWith.js +5 -0
  1993. data/test/dummy/node_modules/lodash/fp/string.js +2 -0
  1994. data/test/dummy/node_modules/lodash/fp/stubArray.js +5 -0
  1995. data/test/dummy/node_modules/lodash/fp/stubFalse.js +5 -0
  1996. data/test/dummy/node_modules/lodash/fp/stubObject.js +5 -0
  1997. data/test/dummy/node_modules/lodash/fp/stubString.js +5 -0
  1998. data/test/dummy/node_modules/lodash/fp/stubTrue.js +5 -0
  1999. data/test/dummy/node_modules/lodash/fp/subtract.js +5 -0
  2000. data/test/dummy/node_modules/lodash/fp/sum.js +5 -0
  2001. data/test/dummy/node_modules/lodash/fp/sumBy.js +5 -0
  2002. data/test/dummy/node_modules/lodash/fp/symmetricDifference.js +1 -0
  2003. data/test/dummy/node_modules/lodash/fp/symmetricDifferenceBy.js +1 -0
  2004. data/test/dummy/node_modules/lodash/fp/symmetricDifferenceWith.js +1 -0
  2005. data/test/dummy/node_modules/lodash/fp/tail.js +5 -0
  2006. data/test/dummy/node_modules/lodash/fp/take.js +5 -0
  2007. data/test/dummy/node_modules/lodash/fp/takeLast.js +1 -0
  2008. data/test/dummy/node_modules/lodash/fp/takeLastWhile.js +1 -0
  2009. data/test/dummy/node_modules/lodash/fp/takeRight.js +5 -0
  2010. data/test/dummy/node_modules/lodash/fp/takeRightWhile.js +5 -0
  2011. data/test/dummy/node_modules/lodash/fp/takeWhile.js +5 -0
  2012. data/test/dummy/node_modules/lodash/fp/tap.js +5 -0
  2013. data/test/dummy/node_modules/lodash/fp/template.js +5 -0
  2014. data/test/dummy/node_modules/lodash/fp/templateSettings.js +5 -0
  2015. data/test/dummy/node_modules/lodash/fp/throttle.js +5 -0
  2016. data/test/dummy/node_modules/lodash/fp/thru.js +5 -0
  2017. data/test/dummy/node_modules/lodash/fp/times.js +5 -0
  2018. data/test/dummy/node_modules/lodash/fp/toArray.js +5 -0
  2019. data/test/dummy/node_modules/lodash/fp/toFinite.js +5 -0
  2020. data/test/dummy/node_modules/lodash/fp/toInteger.js +5 -0
  2021. data/test/dummy/node_modules/lodash/fp/toIterator.js +5 -0
  2022. data/test/dummy/node_modules/lodash/fp/toJSON.js +5 -0
  2023. data/test/dummy/node_modules/lodash/fp/toLength.js +5 -0
  2024. data/test/dummy/node_modules/lodash/fp/toLower.js +5 -0
  2025. data/test/dummy/node_modules/lodash/fp/toNumber.js +5 -0
  2026. data/test/dummy/node_modules/lodash/fp/toPairs.js +5 -0
  2027. data/test/dummy/node_modules/lodash/fp/toPairsIn.js +5 -0
  2028. data/test/dummy/node_modules/lodash/fp/toPath.js +5 -0
  2029. data/test/dummy/node_modules/lodash/fp/toPlainObject.js +5 -0
  2030. data/test/dummy/node_modules/lodash/fp/toSafeInteger.js +5 -0
  2031. data/test/dummy/node_modules/lodash/fp/toString.js +5 -0
  2032. data/test/dummy/node_modules/lodash/fp/toUpper.js +5 -0
  2033. data/test/dummy/node_modules/lodash/fp/transform.js +5 -0
  2034. data/test/dummy/node_modules/lodash/fp/trim.js +5 -0
  2035. data/test/dummy/node_modules/lodash/fp/trimChars.js +5 -0
  2036. data/test/dummy/node_modules/lodash/fp/trimCharsEnd.js +5 -0
  2037. data/test/dummy/node_modules/lodash/fp/trimCharsStart.js +5 -0
  2038. data/test/dummy/node_modules/lodash/fp/trimEnd.js +5 -0
  2039. data/test/dummy/node_modules/lodash/fp/trimStart.js +5 -0
  2040. data/test/dummy/node_modules/lodash/fp/truncate.js +5 -0
  2041. data/test/dummy/node_modules/lodash/fp/unapply.js +1 -0
  2042. data/test/dummy/node_modules/lodash/fp/unary.js +5 -0
  2043. data/test/dummy/node_modules/lodash/fp/unescape.js +5 -0
  2044. data/test/dummy/node_modules/lodash/fp/union.js +5 -0
  2045. data/test/dummy/node_modules/lodash/fp/unionBy.js +5 -0
  2046. data/test/dummy/node_modules/lodash/fp/unionWith.js +5 -0
  2047. data/test/dummy/node_modules/lodash/fp/uniq.js +5 -0
  2048. data/test/dummy/node_modules/lodash/fp/uniqBy.js +5 -0
  2049. data/test/dummy/node_modules/lodash/fp/uniqWith.js +5 -0
  2050. data/test/dummy/node_modules/lodash/fp/uniqueId.js +5 -0
  2051. data/test/dummy/node_modules/lodash/fp/unnest.js +1 -0
  2052. data/test/dummy/node_modules/lodash/fp/unset.js +5 -0
  2053. data/test/dummy/node_modules/lodash/fp/unzip.js +5 -0
  2054. data/test/dummy/node_modules/lodash/fp/unzipWith.js +5 -0
  2055. data/test/dummy/node_modules/lodash/fp/update.js +5 -0
  2056. data/test/dummy/node_modules/lodash/fp/updateWith.js +5 -0
  2057. data/test/dummy/node_modules/lodash/fp/upperCase.js +5 -0
  2058. data/test/dummy/node_modules/lodash/fp/upperFirst.js +5 -0
  2059. data/test/dummy/node_modules/lodash/fp/useWith.js +1 -0
  2060. data/test/dummy/node_modules/lodash/fp/util.js +2 -0
  2061. data/test/dummy/node_modules/lodash/fp/value.js +5 -0
  2062. data/test/dummy/node_modules/lodash/fp/valueOf.js +5 -0
  2063. data/test/dummy/node_modules/lodash/fp/values.js +5 -0
  2064. data/test/dummy/node_modules/lodash/fp/valuesIn.js +5 -0
  2065. data/test/dummy/node_modules/lodash/fp/where.js +1 -0
  2066. data/test/dummy/node_modules/lodash/fp/whereEq.js +1 -0
  2067. data/test/dummy/node_modules/lodash/fp/without.js +5 -0
  2068. data/test/dummy/node_modules/lodash/fp/words.js +5 -0
  2069. data/test/dummy/node_modules/lodash/fp/wrap.js +5 -0
  2070. data/test/dummy/node_modules/lodash/fp/wrapperAt.js +5 -0
  2071. data/test/dummy/node_modules/lodash/fp/wrapperChain.js +5 -0
  2072. data/test/dummy/node_modules/lodash/fp/wrapperLodash.js +5 -0
  2073. data/test/dummy/node_modules/lodash/fp/wrapperReverse.js +5 -0
  2074. data/test/dummy/node_modules/lodash/fp/wrapperValue.js +5 -0
  2075. data/test/dummy/node_modules/lodash/fp/xor.js +5 -0
  2076. data/test/dummy/node_modules/lodash/fp/xorBy.js +5 -0
  2077. data/test/dummy/node_modules/lodash/fp/xorWith.js +5 -0
  2078. data/test/dummy/node_modules/lodash/fp/zip.js +5 -0
  2079. data/test/dummy/node_modules/lodash/fp/zipAll.js +5 -0
  2080. data/test/dummy/node_modules/lodash/fp/zipObj.js +1 -0
  2081. data/test/dummy/node_modules/lodash/fp/zipObject.js +5 -0
  2082. data/test/dummy/node_modules/lodash/fp/zipObjectDeep.js +5 -0
  2083. data/test/dummy/node_modules/lodash/fp/zipWith.js +5 -0
  2084. data/test/dummy/node_modules/lodash/fromPairs.js +28 -0
  2085. data/test/dummy/node_modules/lodash/function.js +25 -0
  2086. data/test/dummy/node_modules/lodash/functions.js +31 -0
  2087. data/test/dummy/node_modules/lodash/functionsIn.js +31 -0
  2088. data/test/dummy/node_modules/lodash/get.js +33 -0
  2089. data/test/dummy/node_modules/lodash/groupBy.js +41 -0
  2090. data/test/dummy/node_modules/lodash/gt.js +29 -0
  2091. data/test/dummy/node_modules/lodash/gte.js +30 -0
  2092. data/test/dummy/node_modules/lodash/has.js +35 -0
  2093. data/test/dummy/node_modules/lodash/hasIn.js +34 -0
  2094. data/test/dummy/node_modules/lodash/head.js +23 -0
  2095. data/test/dummy/node_modules/lodash/identity.js +21 -0
  2096. data/test/dummy/node_modules/lodash/inRange.js +55 -0
  2097. data/test/dummy/node_modules/lodash/includes.js +53 -0
  2098. data/test/dummy/node_modules/lodash/index.js +1 -0
  2099. data/test/dummy/node_modules/lodash/indexOf.js +42 -0
  2100. data/test/dummy/node_modules/lodash/initial.js +22 -0
  2101. data/test/dummy/node_modules/lodash/intersection.js +30 -0
  2102. data/test/dummy/node_modules/lodash/intersectionBy.js +44 -0
  2103. data/test/dummy/node_modules/lodash/intersectionWith.js +42 -0
  2104. data/test/dummy/node_modules/lodash/invert.js +27 -0
  2105. data/test/dummy/node_modules/lodash/invertBy.js +44 -0
  2106. data/test/dummy/node_modules/lodash/invoke.js +24 -0
  2107. data/test/dummy/node_modules/lodash/invokeMap.js +44 -0
  2108. data/test/dummy/node_modules/lodash/isArguments.js +46 -0
  2109. data/test/dummy/node_modules/lodash/isArray.js +26 -0
  2110. data/test/dummy/node_modules/lodash/isArrayBuffer.js +27 -0
  2111. data/test/dummy/node_modules/lodash/isArrayLike.js +33 -0
  2112. data/test/dummy/node_modules/lodash/isArrayLikeObject.js +33 -0
  2113. data/test/dummy/node_modules/lodash/isBoolean.js +38 -0
  2114. data/test/dummy/node_modules/lodash/isBuffer.js +38 -0
  2115. data/test/dummy/node_modules/lodash/isDate.js +27 -0
  2116. data/test/dummy/node_modules/lodash/isElement.js +25 -0
  2117. data/test/dummy/node_modules/lodash/isEmpty.js +79 -0
  2118. data/test/dummy/node_modules/lodash/isEqual.js +35 -0
  2119. data/test/dummy/node_modules/lodash/isEqualWith.js +41 -0
  2120. data/test/dummy/node_modules/lodash/isError.js +42 -0
  2121. data/test/dummy/node_modules/lodash/isFinite.js +36 -0
  2122. data/test/dummy/node_modules/lodash/isFunction.js +41 -0
  2123. data/test/dummy/node_modules/lodash/isInteger.js +33 -0
  2124. data/test/dummy/node_modules/lodash/isLength.js +35 -0
  2125. data/test/dummy/node_modules/lodash/isMap.js +27 -0
  2126. data/test/dummy/node_modules/lodash/isMatch.js +36 -0
  2127. data/test/dummy/node_modules/lodash/isMatchWith.js +41 -0
  2128. data/test/dummy/node_modules/lodash/isNaN.js +38 -0
  2129. data/test/dummy/node_modules/lodash/isNative.js +37 -0
  2130. data/test/dummy/node_modules/lodash/isNil.js +25 -0
  2131. data/test/dummy/node_modules/lodash/isNull.js +22 -0
  2132. data/test/dummy/node_modules/lodash/isNumber.js +47 -0
  2133. data/test/dummy/node_modules/lodash/isObject.js +31 -0
  2134. data/test/dummy/node_modules/lodash/isObjectLike.js +29 -0
  2135. data/test/dummy/node_modules/lodash/isPlainObject.js +70 -0
  2136. data/test/dummy/node_modules/lodash/isRegExp.js +27 -0
  2137. data/test/dummy/node_modules/lodash/isSafeInteger.js +37 -0
  2138. data/test/dummy/node_modules/lodash/isSet.js +27 -0
  2139. data/test/dummy/node_modules/lodash/isString.js +39 -0
  2140. data/test/dummy/node_modules/lodash/isSymbol.js +38 -0
  2141. data/test/dummy/node_modules/lodash/isTypedArray.js +27 -0
  2142. data/test/dummy/node_modules/lodash/isUndefined.js +22 -0
  2143. data/test/dummy/node_modules/lodash/isWeakMap.js +28 -0
  2144. data/test/dummy/node_modules/lodash/isWeakSet.js +37 -0
  2145. data/test/dummy/node_modules/lodash/iteratee.js +50 -0
  2146. data/test/dummy/node_modules/lodash/join.js +26 -0
  2147. data/test/dummy/node_modules/lodash/kebabCase.js +28 -0
  2148. data/test/dummy/node_modules/lodash/keyBy.js +36 -0
  2149. data/test/dummy/node_modules/lodash/keys.js +37 -0
  2150. data/test/dummy/node_modules/lodash/keysIn.js +32 -0
  2151. data/test/dummy/node_modules/lodash/lang.js +58 -0
  2152. data/test/dummy/node_modules/lodash/last.js +20 -0
  2153. data/test/dummy/node_modules/lodash/lastIndexOf.js +55 -0
  2154. data/test/dummy/node_modules/lodash/lodash.js +16733 -0
  2155. data/test/dummy/node_modules/lodash/lodash.min.js +132 -0
  2156. data/test/dummy/node_modules/lodash/lowerCase.js +27 -0
  2157. data/test/dummy/node_modules/lodash/lowerFirst.js +22 -0
  2158. data/test/dummy/node_modules/lodash/lt.js +29 -0
  2159. data/test/dummy/node_modules/lodash/lte.js +30 -0
  2160. data/test/dummy/node_modules/lodash/map.js +53 -0
  2161. data/test/dummy/node_modules/lodash/mapKeys.js +35 -0
  2162. data/test/dummy/node_modules/lodash/mapValues.js +42 -0
  2163. data/test/dummy/node_modules/lodash/matches.js +36 -0
  2164. data/test/dummy/node_modules/lodash/matchesProperty.js +34 -0
  2165. data/test/dummy/node_modules/lodash/math.js +17 -0
  2166. data/test/dummy/node_modules/lodash/max.js +29 -0
  2167. data/test/dummy/node_modules/lodash/maxBy.js +34 -0
  2168. data/test/dummy/node_modules/lodash/mean.js +22 -0
  2169. data/test/dummy/node_modules/lodash/meanBy.js +31 -0
  2170. data/test/dummy/node_modules/lodash/memoize.js +73 -0
  2171. data/test/dummy/node_modules/lodash/merge.js +39 -0
  2172. data/test/dummy/node_modules/lodash/mergeWith.js +39 -0
  2173. data/test/dummy/node_modules/lodash/method.js +34 -0
  2174. data/test/dummy/node_modules/lodash/methodOf.js +33 -0
  2175. data/test/dummy/node_modules/lodash/min.js +29 -0
  2176. data/test/dummy/node_modules/lodash/minBy.js +34 -0
  2177. data/test/dummy/node_modules/lodash/mixin.js +74 -0
  2178. data/test/dummy/node_modules/lodash/multiply.js +22 -0
  2179. data/test/dummy/node_modules/lodash/negate.js +40 -0
  2180. data/test/dummy/node_modules/lodash/next.js +35 -0
  2181. data/test/dummy/node_modules/lodash/noop.js +17 -0
  2182. data/test/dummy/node_modules/lodash/now.js +23 -0
  2183. data/test/dummy/node_modules/lodash/nth.js +29 -0
  2184. data/test/dummy/node_modules/lodash/nthArg.js +32 -0
  2185. data/test/dummy/node_modules/lodash/number.js +5 -0
  2186. data/test/dummy/node_modules/lodash/object.js +49 -0
  2187. data/test/dummy/node_modules/lodash/omit.js +36 -0
  2188. data/test/dummy/node_modules/lodash/omitBy.js +29 -0
  2189. data/test/dummy/node_modules/lodash/once.js +25 -0
  2190. data/test/dummy/node_modules/lodash/orderBy.js +47 -0
  2191. data/test/dummy/node_modules/lodash/over.js +24 -0
  2192. data/test/dummy/node_modules/lodash/overArgs.js +60 -0
  2193. data/test/dummy/node_modules/lodash/overEvery.js +30 -0
  2194. data/test/dummy/node_modules/lodash/overSome.js +30 -0
  2195. data/test/dummy/node_modules/lodash/package.json +107 -0
  2196. data/test/dummy/node_modules/lodash/pad.js +49 -0
  2197. data/test/dummy/node_modules/lodash/padEnd.js +39 -0
  2198. data/test/dummy/node_modules/lodash/padStart.js +39 -0
  2199. data/test/dummy/node_modules/lodash/parseInt.js +49 -0
  2200. data/test/dummy/node_modules/lodash/partial.js +50 -0
  2201. data/test/dummy/node_modules/lodash/partialRight.js +49 -0
  2202. data/test/dummy/node_modules/lodash/partition.js +43 -0
  2203. data/test/dummy/node_modules/lodash/pick.js +28 -0
  2204. data/test/dummy/node_modules/lodash/pickBy.js +27 -0
  2205. data/test/dummy/node_modules/lodash/plant.js +48 -0
  2206. data/test/dummy/node_modules/lodash/property.js +32 -0
  2207. data/test/dummy/node_modules/lodash/propertyOf.js +30 -0
  2208. data/test/dummy/node_modules/lodash/pull.js +29 -0
  2209. data/test/dummy/node_modules/lodash/pullAll.js +29 -0
  2210. data/test/dummy/node_modules/lodash/pullAllBy.js +34 -0
  2211. data/test/dummy/node_modules/lodash/pullAllWith.js +32 -0
  2212. data/test/dummy/node_modules/lodash/pullAt.js +46 -0
  2213. data/test/dummy/node_modules/lodash/random.js +82 -0
  2214. data/test/dummy/node_modules/lodash/range.js +46 -0
  2215. data/test/dummy/node_modules/lodash/rangeRight.js +41 -0
  2216. data/test/dummy/node_modules/lodash/rearg.js +34 -0
  2217. data/test/dummy/node_modules/lodash/reduce.js +51 -0
  2218. data/test/dummy/node_modules/lodash/reduceRight.js +36 -0
  2219. data/test/dummy/node_modules/lodash/reject.js +46 -0
  2220. data/test/dummy/node_modules/lodash/remove.js +54 -0
  2221. data/test/dummy/node_modules/lodash/repeat.js +37 -0
  2222. data/test/dummy/node_modules/lodash/replace.js +29 -0
  2223. data/test/dummy/node_modules/lodash/rest.js +40 -0
  2224. data/test/dummy/node_modules/lodash/result.js +57 -0
  2225. data/test/dummy/node_modules/lodash/reverse.js +34 -0
  2226. data/test/dummy/node_modules/lodash/round.js +26 -0
  2227. data/test/dummy/node_modules/lodash/sample.js +26 -0
  2228. data/test/dummy/node_modules/lodash/sampleSize.js +49 -0
  2229. data/test/dummy/node_modules/lodash/seq.js +16 -0
  2230. data/test/dummy/node_modules/lodash/set.js +35 -0
  2231. data/test/dummy/node_modules/lodash/setWith.js +32 -0
  2232. data/test/dummy/node_modules/lodash/shuffle.js +25 -0
  2233. data/test/dummy/node_modules/lodash/size.js +46 -0
  2234. data/test/dummy/node_modules/lodash/slice.js +37 -0
  2235. data/test/dummy/node_modules/lodash/snakeCase.js +28 -0
  2236. data/test/dummy/node_modules/lodash/some.js +51 -0
  2237. data/test/dummy/node_modules/lodash/sortBy.js +53 -0
  2238. data/test/dummy/node_modules/lodash/sortedIndex.js +24 -0
  2239. data/test/dummy/node_modules/lodash/sortedIndexBy.js +34 -0
  2240. data/test/dummy/node_modules/lodash/sortedIndexOf.js +31 -0
  2241. data/test/dummy/node_modules/lodash/sortedLastIndex.js +25 -0
  2242. data/test/dummy/node_modules/lodash/sortedLastIndexBy.js +34 -0
  2243. data/test/dummy/node_modules/lodash/sortedLastIndexOf.js +31 -0
  2244. data/test/dummy/node_modules/lodash/sortedUniq.js +24 -0
  2245. data/test/dummy/node_modules/lodash/sortedUniqBy.js +26 -0
  2246. data/test/dummy/node_modules/lodash/split.js +52 -0
  2247. data/test/dummy/node_modules/lodash/spread.js +63 -0
  2248. data/test/dummy/node_modules/lodash/startCase.js +29 -0
  2249. data/test/dummy/node_modules/lodash/startsWith.js +36 -0
  2250. data/test/dummy/node_modules/lodash/string.js +33 -0
  2251. data/test/dummy/node_modules/lodash/stubArray.js +23 -0
  2252. data/test/dummy/node_modules/lodash/stubFalse.js +18 -0
  2253. data/test/dummy/node_modules/lodash/stubObject.js +23 -0
  2254. data/test/dummy/node_modules/lodash/stubString.js +18 -0
  2255. data/test/dummy/node_modules/lodash/stubTrue.js +18 -0
  2256. data/test/dummy/node_modules/lodash/subtract.js +22 -0
  2257. data/test/dummy/node_modules/lodash/sum.js +24 -0
  2258. data/test/dummy/node_modules/lodash/sumBy.js +33 -0
  2259. data/test/dummy/node_modules/lodash/tail.js +22 -0
  2260. data/test/dummy/node_modules/lodash/take.js +37 -0
  2261. data/test/dummy/node_modules/lodash/takeRight.js +39 -0
  2262. data/test/dummy/node_modules/lodash/takeRightWhile.js +46 -0
  2263. data/test/dummy/node_modules/lodash/takeWhile.js +46 -0
  2264. data/test/dummy/node_modules/lodash/tap.js +29 -0
  2265. data/test/dummy/node_modules/lodash/template.js +237 -0
  2266. data/test/dummy/node_modules/lodash/templateSettings.js +67 -0
  2267. data/test/dummy/node_modules/lodash/throttle.js +69 -0
  2268. data/test/dummy/node_modules/lodash/thru.js +28 -0
  2269. data/test/dummy/node_modules/lodash/times.js +51 -0
  2270. data/test/dummy/node_modules/lodash/toArray.js +58 -0
  2271. data/test/dummy/node_modules/lodash/toFinite.js +42 -0
  2272. data/test/dummy/node_modules/lodash/toInteger.js +36 -0
  2273. data/test/dummy/node_modules/lodash/toIterator.js +23 -0
  2274. data/test/dummy/node_modules/lodash/toJSON.js +1 -0
  2275. data/test/dummy/node_modules/lodash/toLength.js +38 -0
  2276. data/test/dummy/node_modules/lodash/toLower.js +28 -0
  2277. data/test/dummy/node_modules/lodash/toNumber.js +66 -0
  2278. data/test/dummy/node_modules/lodash/toPairs.js +30 -0
  2279. data/test/dummy/node_modules/lodash/toPairsIn.js +30 -0
  2280. data/test/dummy/node_modules/lodash/toPath.js +32 -0
  2281. data/test/dummy/node_modules/lodash/toPlainObject.js +32 -0
  2282. data/test/dummy/node_modules/lodash/toSafeInteger.js +35 -0
  2283. data/test/dummy/node_modules/lodash/toString.js +28 -0
  2284. data/test/dummy/node_modules/lodash/toUpper.js +28 -0
  2285. data/test/dummy/node_modules/lodash/transform.js +63 -0
  2286. data/test/dummy/node_modules/lodash/trim.js +49 -0
  2287. data/test/dummy/node_modules/lodash/trimEnd.js +43 -0
  2288. data/test/dummy/node_modules/lodash/trimStart.js +43 -0
  2289. data/test/dummy/node_modules/lodash/truncate.js +111 -0
  2290. data/test/dummy/node_modules/lodash/unary.js +22 -0
  2291. data/test/dummy/node_modules/lodash/unescape.js +34 -0
  2292. data/test/dummy/node_modules/lodash/union.js +26 -0
  2293. data/test/dummy/node_modules/lodash/unionBy.js +40 -0
  2294. data/test/dummy/node_modules/lodash/unionWith.js +36 -0
  2295. data/test/dummy/node_modules/lodash/uniq.js +26 -0
  2296. data/test/dummy/node_modules/lodash/uniqBy.js +32 -0
  2297. data/test/dummy/node_modules/lodash/uniqWith.js +28 -0
  2298. data/test/dummy/node_modules/lodash/uniqueId.js +28 -0
  2299. data/test/dummy/node_modules/lodash/unset.js +34 -0
  2300. data/test/dummy/node_modules/lodash/unzip.js +45 -0
  2301. data/test/dummy/node_modules/lodash/unzipWith.js +39 -0
  2302. data/test/dummy/node_modules/lodash/update.js +35 -0
  2303. data/test/dummy/node_modules/lodash/updateWith.js +33 -0
  2304. data/test/dummy/node_modules/lodash/upperCase.js +27 -0
  2305. data/test/dummy/node_modules/lodash/upperFirst.js +22 -0
  2306. data/test/dummy/node_modules/lodash/util.js +34 -0
  2307. data/test/dummy/node_modules/lodash/value.js +1 -0
  2308. data/test/dummy/node_modules/lodash/valueOf.js +1 -0
  2309. data/test/dummy/node_modules/lodash/values.js +34 -0
  2310. data/test/dummy/node_modules/lodash/valuesIn.js +32 -0
  2311. data/test/dummy/node_modules/lodash/without.js +31 -0
  2312. data/test/dummy/node_modules/lodash/words.js +35 -0
  2313. data/test/dummy/node_modules/lodash/wrap.js +31 -0
  2314. data/test/dummy/node_modules/lodash/wrapperAt.js +50 -0
  2315. data/test/dummy/node_modules/lodash/wrapperChain.js +34 -0
  2316. data/test/dummy/node_modules/lodash/wrapperLodash.js +147 -0
  2317. data/test/dummy/node_modules/lodash/wrapperReverse.js +44 -0
  2318. data/test/dummy/node_modules/lodash/wrapperValue.js +21 -0
  2319. data/test/dummy/node_modules/lodash/xor.js +28 -0
  2320. data/test/dummy/node_modules/lodash/xorBy.js +39 -0
  2321. data/test/dummy/node_modules/lodash/xorWith.js +35 -0
  2322. data/test/dummy/node_modules/lodash/zip.js +22 -0
  2323. data/test/dummy/node_modules/lodash/zipObject.js +24 -0
  2324. data/test/dummy/node_modules/lodash/zipObjectDeep.js +23 -0
  2325. data/test/dummy/node_modules/lodash/zipWith.js +31 -0
  2326. data/test/dummy/node_modules/miller-rabin/README.md +26 -0
  2327. data/test/dummy/node_modules/miller-rabin/bin/miller-rabin +29 -0
  2328. data/test/dummy/node_modules/miller-rabin/lib/mr.js +113 -0
  2329. data/test/dummy/node_modules/miller-rabin/package.json +89 -0
  2330. data/test/dummy/node_modules/miller-rabin/test/api-test.js +18 -0
  2331. data/test/dummy/node_modules/minimalistic-assert/index.js +11 -0
  2332. data/test/dummy/node_modules/minimalistic-assert/package.json +70 -0
  2333. data/test/dummy/node_modules/minimalistic-assert/readme.md +4 -0
  2334. data/test/dummy/node_modules/minimatch/LICENSE +15 -0
  2335. data/test/dummy/node_modules/minimatch/README.md +209 -0
  2336. data/test/dummy/node_modules/minimatch/minimatch.js +923 -0
  2337. data/test/dummy/node_modules/minimatch/package.json +89 -0
  2338. data/test/dummy/node_modules/minimist/LICENSE +18 -0
  2339. data/test/dummy/node_modules/minimist/example/parse.js +2 -0
  2340. data/test/dummy/node_modules/minimist/index.js +236 -0
  2341. data/test/dummy/node_modules/minimist/package.json +97 -0
  2342. data/test/dummy/node_modules/minimist/readme.markdown +91 -0
  2343. data/test/dummy/node_modules/minimist/test/all_bool.js +32 -0
  2344. data/test/dummy/node_modules/minimist/test/bool.js +166 -0
  2345. data/test/dummy/node_modules/minimist/test/dash.js +31 -0
  2346. data/test/dummy/node_modules/minimist/test/default_bool.js +35 -0
  2347. data/test/dummy/node_modules/minimist/test/dotted.js +22 -0
  2348. data/test/dummy/node_modules/minimist/test/kv_short.js +16 -0
  2349. data/test/dummy/node_modules/minimist/test/long.js +31 -0
  2350. data/test/dummy/node_modules/minimist/test/num.js +36 -0
  2351. data/test/dummy/node_modules/minimist/test/parse.js +197 -0
  2352. data/test/dummy/node_modules/minimist/test/parse_modified.js +9 -0
  2353. data/test/dummy/node_modules/minimist/test/short.js +67 -0
  2354. data/test/dummy/node_modules/minimist/test/stop_early.js +15 -0
  2355. data/test/dummy/node_modules/minimist/test/unknown.js +102 -0
  2356. data/test/dummy/node_modules/minimist/test/whitespace.js +8 -0
  2357. data/test/dummy/node_modules/minimum_viable_product/Gemfile +14 -0
  2358. data/test/dummy/node_modules/minimum_viable_product/Gemfile.lock +385 -0
  2359. data/test/dummy/node_modules/minimum_viable_product/MIT-LICENSE +20 -0
  2360. data/test/dummy/node_modules/minimum_viable_product/README.rdoc +3 -0
  2361. data/test/dummy/node_modules/minimum_viable_product/Rakefile +37 -0
  2362. data/test/dummy/node_modules/minimum_viable_product/app/assets/javascripts/minimum_viable_product/application.js.erb +38 -0
  2363. data/test/dummy/node_modules/minimum_viable_product/app/assets/javascripts/minimum_viable_product/init/controllers.js +23 -0
  2364. data/test/dummy/node_modules/minimum_viable_product/app/assets/stylesheets/minimum_viable_product/application.scss +23 -0
  2365. data/test/dummy/node_modules/minimum_viable_product/app/assets/stylesheets/minimum_viable_product/components/buttons.scss +20 -0
  2366. data/test/dummy/node_modules/minimum_viable_product/app/assets/stylesheets/minimum_viable_product/components/fonts.scss +15 -0
  2367. data/test/dummy/node_modules/minimum_viable_product/app/assets/stylesheets/minimum_viable_product/components/spacing.scss +13 -0
  2368. data/test/dummy/node_modules/minimum_viable_product/app/assets/stylesheets/minimum_viable_product/components/typography.scss +40 -0
  2369. data/test/dummy/node_modules/minimum_viable_product/app/assets/stylesheets/minimum_viable_product/init/_reset.scss +43 -0
  2370. data/test/dummy/node_modules/minimum_viable_product/app/assets/stylesheets/minimum_viable_product/init/layout.scss +42 -0
  2371. data/test/dummy/node_modules/minimum_viable_product/app/assets/stylesheets/minimum_viable_product/layout/basic.scss +6 -0
  2372. data/test/dummy/node_modules/minimum_viable_product/app/assets/stylesheets/minimum_viable_product/layout/carousel.scss +128 -0
  2373. data/test/dummy/node_modules/minimum_viable_product/app/assets/stylesheets/minimum_viable_product/layout/cover.scss +111 -0
  2374. data/test/dummy/node_modules/minimum_viable_product/app/assets/stylesheets/minimum_viable_product/pages/sample.scss +14 -0
  2375. data/test/dummy/node_modules/minimum_viable_product/app/assets/stylesheets/minimum_viable_product/skin/style.scss +8 -0
  2376. data/test/dummy/node_modules/minimum_viable_product/app/controllers/minimum_viable_product/analytics_controller.rb +14 -0
  2377. data/test/dummy/node_modules/minimum_viable_product/app/controllers/minimum_viable_product/concerns/analytics_concern.rb +77 -0
  2378. data/test/dummy/node_modules/minimum_viable_product/app/controllers/minimum_viable_product/concerns/seo_concern.rb +25 -0
  2379. data/test/dummy/node_modules/minimum_viable_product/app/controllers/minimum_viable_product/concerns/session_concern.rb +40 -0
  2380. data/test/dummy/node_modules/minimum_viable_product/app/controllers/minimum_viable_product/controller.rb +11 -0
  2381. data/test/dummy/node_modules/minimum_viable_product/app/controllers/minimum_viable_product/seo_controller.rb +13 -0
  2382. data/test/dummy/node_modules/minimum_viable_product/app/controllers/minimum_viable_product/styleguide_controller.rb +25 -0
  2383. data/test/dummy/node_modules/minimum_viable_product/app/helpers/minimum_viable_product/analytics_helper.rb +4 -0
  2384. data/test/dummy/node_modules/minimum_viable_product/app/helpers/minimum_viable_product/application_helper.rb +15 -0
  2385. data/test/dummy/node_modules/minimum_viable_product/app/helpers/minimum_viable_product/bootstrap_helper.rb +38 -0
  2386. data/test/dummy/node_modules/minimum_viable_product/app/helpers/minimum_viable_product/seo_helper.rb +4 -0
  2387. data/test/dummy/node_modules/minimum_viable_product/app/helpers/minimum_viable_product/styleguide_helper.rb +4 -0
  2388. data/test/dummy/node_modules/minimum_viable_product/app/models/concerns/slugification.rb +16 -0
  2389. data/test/dummy/node_modules/minimum_viable_product/app/views/layouts/minimum_viable_product/_header.html.erb +48 -0
  2390. data/test/dummy/node_modules/minimum_viable_product/app/views/layouts/minimum_viable_product/_instrumentation.html.erb +75 -0
  2391. data/test/dummy/node_modules/minimum_viable_product/app/views/layouts/minimum_viable_product/_meta.html.erb +37 -0
  2392. data/test/dummy/node_modules/minimum_viable_product/app/views/layouts/minimum_viable_product/application.html.erb +24 -0
  2393. data/test/dummy/node_modules/minimum_viable_product/app/views/layouts/minimum_viable_product/basic.html.erb +16 -0
  2394. data/test/dummy/node_modules/minimum_viable_product/app/views/layouts/minimum_viable_product/carousel.html.erb +17 -0
  2395. data/test/dummy/node_modules/minimum_viable_product/app/views/layouts/minimum_viable_product/cover.html.erb +13 -0
  2396. data/test/dummy/node_modules/minimum_viable_product/app/views/minimum_viable_product/styleguide/_example.html.erb +6 -0
  2397. data/test/dummy/node_modules/minimum_viable_product/app/views/minimum_viable_product/styleguide/bootstrap.html.erb +43 -0
  2398. data/test/dummy/node_modules/minimum_viable_product/app/views/minimum_viable_product/styleguide/bootstrap/_buttons.html.erb +191 -0
  2399. data/test/dummy/node_modules/minimum_viable_product/app/views/minimum_viable_product/styleguide/bootstrap/_forms.html.erb +192 -0
  2400. data/test/dummy/node_modules/minimum_viable_product/app/views/minimum_viable_product/styleguide/bootstrap/_header.html.erb +48 -0
  2401. data/test/dummy/node_modules/minimum_viable_product/app/views/minimum_viable_product/styleguide/bootstrap/_panels.html.erb +16 -0
  2402. data/test/dummy/node_modules/minimum_viable_product/app/views/minimum_viable_product/styleguide/bootstrap/_tables.html.erb +34 -0
  2403. data/test/dummy/node_modules/minimum_viable_product/app/views/minimum_viable_product/styleguide/bootstrap/_typography.html.erb +51 -0
  2404. data/test/dummy/node_modules/minimum_viable_product/app/views/minimum_viable_product/styleguide/elements/_grouping.html.erb +1 -0
  2405. data/test/dummy/node_modules/minimum_viable_product/app/views/minimum_viable_product/styleguide/elements/partials/_row_groups_of.html.erb +7 -0
  2406. data/test/dummy/node_modules/minimum_viable_product/app/views/minimum_viable_product/styleguide/index.html.erb +17 -0
  2407. data/test/dummy/node_modules/minimum_viable_product/app/views/minimum_viable_product/styleguide/layouts/basic.html.erb +4 -0
  2408. data/test/dummy/node_modules/minimum_viable_product/app/views/minimum_viable_product/styleguide/layouts/carousel.html.erb +120 -0
  2409. data/test/dummy/node_modules/minimum_viable_product/app/views/minimum_viable_product/styleguide/layouts/cover.html.erb +34 -0
  2410. data/test/dummy/node_modules/minimum_viable_product/bin/mvp +68 -0
  2411. data/test/dummy/node_modules/minimum_viable_product/bin/rails +12 -0
  2412. data/test/dummy/node_modules/minimum_viable_product/config/initializers/canonical_host.rb +3 -0
  2413. data/test/dummy/node_modules/minimum_viable_product/config/initializers/client_side_validations.rb +20 -0
  2414. data/test/dummy/node_modules/minimum_viable_product/config/initializers/cloudinary.rb +6 -0
  2415. data/test/dummy/node_modules/minimum_viable_product/config/initializers/geocoder.rb +9 -0
  2416. data/test/dummy/node_modules/minimum_viable_product/config/initializers/iteration.rb +33 -0
  2417. data/test/dummy/node_modules/minimum_viable_product/config/initializers/rollbar.rb +59 -0
  2418. data/test/dummy/node_modules/minimum_viable_product/config/initializers/segment.rb +5 -0
  2419. data/test/dummy/node_modules/minimum_viable_product/config/initializers/simple_form.rb +165 -0
  2420. data/test/dummy/node_modules/minimum_viable_product/config/initializers/simple_form_bootstrap.rb +149 -0
  2421. data/test/dummy/node_modules/minimum_viable_product/config/initializers/spoof_ip.rb +33 -0
  2422. data/test/dummy/node_modules/minimum_viable_product/config/initializers/ssl.rb +3 -0
  2423. data/test/dummy/node_modules/minimum_viable_product/config/routes.rb +16 -0
  2424. data/test/dummy/node_modules/minimum_viable_product/lib/minimum_viable_product.rb +6 -0
  2425. data/test/dummy/node_modules/minimum_viable_product/lib/minimum_viable_product/engine.rb +20 -0
  2426. data/test/dummy/node_modules/minimum_viable_product/lib/minimum_viable_product/ext/nil.rb +5 -0
  2427. data/test/dummy/node_modules/minimum_viable_product/lib/minimum_viable_product/ext/string.rb +7 -0
  2428. data/test/dummy/node_modules/minimum_viable_product/lib/minimum_viable_product/version.rb +3 -0
  2429. data/test/dummy/node_modules/minimum_viable_product/lib/tasks/sitemap.rake +42 -0
  2430. data/test/dummy/node_modules/minimum_viable_product/mvp.gemspec +53 -0
  2431. data/test/dummy/node_modules/minimum_viable_product/package.json +70 -0
  2432. data/test/dummy/node_modules/minimum_viable_product/test/dummy/README.rdoc +28 -0
  2433. data/test/dummy/node_modules/minimum_viable_product/test/dummy/Rakefile +6 -0
  2434. data/test/dummy/node_modules/minimum_viable_product/test/dummy/app/assets/javascripts/application.js +13 -0
  2435. data/test/dummy/{app → node_modules/minimum_viable_product/test/dummy/app}/assets/stylesheets/application.css +0 -0
  2436. data/test/dummy/node_modules/minimum_viable_product/test/dummy/app/controllers/application_controller.rb +5 -0
  2437. data/test/dummy/node_modules/minimum_viable_product/test/dummy/app/helpers/application_helper.rb +2 -0
  2438. data/test/dummy/node_modules/minimum_viable_product/test/dummy/app/views/layouts/application.html.erb +14 -0
  2439. data/test/dummy/node_modules/minimum_viable_product/test/dummy/bin/bundle +3 -0
  2440. data/test/dummy/node_modules/minimum_viable_product/test/dummy/bin/rails +4 -0
  2441. data/test/dummy/node_modules/minimum_viable_product/test/dummy/bin/rake +4 -0
  2442. data/test/dummy/node_modules/minimum_viable_product/test/dummy/bin/setup +29 -0
  2443. data/test/dummy/node_modules/minimum_viable_product/test/dummy/config.ru +4 -0
  2444. data/test/dummy/node_modules/minimum_viable_product/test/dummy/config/application.rb +26 -0
  2445. data/test/dummy/node_modules/minimum_viable_product/test/dummy/config/boot.rb +5 -0
  2446. data/test/dummy/node_modules/minimum_viable_product/test/dummy/config/database.yml +25 -0
  2447. data/test/dummy/node_modules/minimum_viable_product/test/dummy/config/environment.rb +5 -0
  2448. data/test/dummy/node_modules/minimum_viable_product/test/dummy/config/environments/development.rb +41 -0
  2449. data/test/dummy/node_modules/minimum_viable_product/test/dummy/config/environments/production.rb +79 -0
  2450. data/test/dummy/node_modules/minimum_viable_product/test/dummy/config/environments/test.rb +42 -0
  2451. data/test/dummy/node_modules/minimum_viable_product/test/dummy/config/initializers/assets.rb +11 -0
  2452. data/test/dummy/node_modules/minimum_viable_product/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  2453. data/test/dummy/node_modules/minimum_viable_product/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  2454. data/test/dummy/node_modules/minimum_viable_product/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  2455. data/test/dummy/node_modules/minimum_viable_product/test/dummy/config/initializers/inflections.rb +16 -0
  2456. data/test/dummy/node_modules/minimum_viable_product/test/dummy/config/initializers/mime_types.rb +4 -0
  2457. data/test/dummy/node_modules/minimum_viable_product/test/dummy/config/initializers/session_store.rb +3 -0
  2458. data/test/dummy/node_modules/minimum_viable_product/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  2459. data/test/dummy/node_modules/minimum_viable_product/test/dummy/config/locales/en.yml +23 -0
  2460. data/test/dummy/node_modules/minimum_viable_product/test/dummy/config/routes.rb +4 -0
  2461. data/test/dummy/node_modules/minimum_viable_product/test/dummy/config/secrets.yml +22 -0
  2462. data/test/dummy/node_modules/minimum_viable_product/test/dummy/public/404.html +67 -0
  2463. data/test/dummy/node_modules/minimum_viable_product/test/dummy/public/422.html +67 -0
  2464. data/test/dummy/node_modules/minimum_viable_product/test/dummy/public/500.html +66 -0
  2465. data/test/dummy/node_modules/minimum_viable_product/test/dummy/public/favicon.ico +0 -0
  2466. data/test/dummy/node_modules/minimum_viable_product/test/integration/navigation_test.rb +8 -0
  2467. data/test/dummy/node_modules/minimum_viable_product/test/minimum_viable_product_test.rb +7 -0
  2468. data/test/dummy/node_modules/minimum_viable_product/test/test_helper.rb +21 -0
  2469. data/test/dummy/node_modules/module-deps/LICENSE +18 -0
  2470. data/test/dummy/node_modules/module-deps/bin/cmd.js +28 -0
  2471. data/test/dummy/node_modules/module-deps/bin/usage.txt +9 -0
  2472. data/test/dummy/node_modules/module-deps/example/deps.js +6 -0
  2473. data/test/dummy/node_modules/module-deps/example/files/bar.js +3 -0
  2474. data/test/dummy/node_modules/module-deps/example/files/foo.js +5 -0
  2475. data/test/dummy/node_modules/module-deps/example/files/main.js +2 -0
  2476. data/test/dummy/node_modules/module-deps/example/files/xyz.js +2 -0
  2477. data/test/dummy/node_modules/module-deps/index.js +563 -0
  2478. data/test/dummy/node_modules/module-deps/package.json +134 -0
  2479. data/test/dummy/node_modules/module-deps/readme.markdown +244 -0
  2480. data/test/dummy/node_modules/module-deps/test/bundle.js +23 -0
  2481. data/test/dummy/node_modules/module-deps/test/cache.js +50 -0
  2482. data/test/dummy/node_modules/module-deps/test/cache_expose.js +54 -0
  2483. data/test/dummy/node_modules/module-deps/test/cache_partial.js +47 -0
  2484. data/test/dummy/node_modules/module-deps/test/cache_partial_expose.js +104 -0
  2485. data/test/dummy/node_modules/module-deps/test/cycle.js +19 -0
  2486. data/test/dummy/node_modules/module-deps/test/cycle/bar.js +3 -0
  2487. data/test/dummy/node_modules/module-deps/test/cycle/foo.js +4 -0
  2488. data/test/dummy/node_modules/module-deps/test/cycle/main.js +4 -0
  2489. data/test/dummy/node_modules/module-deps/test/deps.js +49 -0
  2490. data/test/dummy/node_modules/module-deps/test/dotdot.js +20 -0
  2491. data/test/dummy/node_modules/module-deps/test/dotdot/abc/index.js +2 -0
  2492. data/test/dummy/node_modules/module-deps/test/dotdot/index.js +1 -0
  2493. data/test/dummy/node_modules/module-deps/test/expose.js +41 -0
  2494. data/test/dummy/node_modules/module-deps/test/expose/bar.js +1 -0
  2495. data/test/dummy/node_modules/module-deps/test/expose/foo.js +1 -0
  2496. data/test/dummy/node_modules/module-deps/test/expose/lib/abc.js +1 -0
  2497. data/test/dummy/node_modules/module-deps/test/expose/lib/xyz.js +2 -0
  2498. data/test/dummy/node_modules/module-deps/test/expose/main.js +3 -0
  2499. data/test/dummy/node_modules/module-deps/test/file_cache.js +58 -0
  2500. data/test/dummy/node_modules/module-deps/test/files/bar.js +3 -0
  2501. data/test/dummy/node_modules/module-deps/test/files/extra.js +1 -0
  2502. data/test/dummy/node_modules/module-deps/test/files/filterable.js +10 -0
  2503. data/test/dummy/node_modules/module-deps/test/files/foo.js +5 -0
  2504. data/test/dummy/node_modules/module-deps/test/files/main.js +2 -0
  2505. data/test/dummy/node_modules/module-deps/test/files/pkg_filter/one.js +1 -0
  2506. data/test/dummy/node_modules/module-deps/test/files/pkg_filter/package.json +3 -0
  2507. data/test/dummy/node_modules/module-deps/test/files/pkg_filter/test.js +1 -0
  2508. data/test/dummy/node_modules/module-deps/test/files/pkg_filter/two.js +1 -0
  2509. data/test/dummy/node_modules/module-deps/test/files/tr_2dep_module/f.js +1 -0
  2510. data/test/dummy/node_modules/module-deps/test/files/tr_2dep_module/main.js +7 -0
  2511. data/test/dummy/node_modules/module-deps/test/files/tr_2dep_module/node_modules/g/index.js +1 -0
  2512. data/test/dummy/node_modules/module-deps/test/files/tr_2dep_module/node_modules/g/node_modules/insert-ggg/index.js +8 -0
  2513. data/test/dummy/node_modules/module-deps/test/files/tr_2dep_module/node_modules/g/package.json +6 -0
  2514. data/test/dummy/node_modules/module-deps/test/files/tr_2dep_module/node_modules/insert-aaa/index.js +8 -0
  2515. data/test/dummy/node_modules/module-deps/test/files/tr_2dep_module/node_modules/insert-bbb/index.js +8 -0
  2516. data/test/dummy/node_modules/module-deps/test/files/tr_2dep_module/node_modules/m/index.js +3 -0
  2517. data/test/dummy/node_modules/module-deps/test/files/tr_2dep_module/node_modules/m/node_modules/insert-mmm/index.js +8 -0
  2518. data/test/dummy/node_modules/module-deps/test/files/tr_2dep_module/node_modules/m/package.json +6 -0
  2519. data/test/dummy/node_modules/module-deps/test/files/tr_global/main.js +1 -0
  2520. data/test/dummy/node_modules/module-deps/test/files/tr_global/package.json +5 -0
  2521. data/test/dummy/node_modules/module-deps/test/files/tr_module/f.js +1 -0
  2522. data/test/dummy/node_modules/module-deps/test/files/tr_module/index.js +8 -0
  2523. data/test/dummy/node_modules/module-deps/test/files/tr_module/main.js +8 -0
  2524. data/test/dummy/node_modules/module-deps/test/files/tr_module/package.json +5 -0
  2525. data/test/dummy/node_modules/module-deps/test/files/tr_module/xxx.js +8 -0
  2526. data/test/dummy/node_modules/module-deps/test/files/tr_no_entry/main.js +1 -0
  2527. data/test/dummy/node_modules/module-deps/test/files/tr_rel/package.json +5 -0
  2528. data/test/dummy/node_modules/module-deps/test/files/tr_rel/subdir/main.js +1 -0
  2529. data/test/dummy/node_modules/module-deps/test/files/tr_rel/xxx.js +8 -0
  2530. data/test/dummy/node_modules/module-deps/test/files/tr_sh/f.js +1 -0
  2531. data/test/dummy/node_modules/module-deps/test/files/tr_sh/main.js +7 -0
  2532. data/test/dummy/node_modules/module-deps/test/files/tr_sh/node_modules/g/index.js +1 -0
  2533. data/test/dummy/node_modules/module-deps/test/files/tr_sh/node_modules/g/package.json +6 -0
  2534. data/test/dummy/node_modules/module-deps/test/files/tr_sh/node_modules/g/tr_g.js +7 -0
  2535. data/test/dummy/node_modules/module-deps/test/files/tr_sh/node_modules/m/index.js +3 -0
  2536. data/test/dummy/node_modules/module-deps/test/files/tr_sh/tr_a.js +7 -0
  2537. data/test/dummy/node_modules/module-deps/test/files/tr_sh/tr_b.js +7 -0
  2538. data/test/dummy/node_modules/module-deps/test/files/tr_whole_package/f.js +3 -0
  2539. data/test/dummy/node_modules/module-deps/test/files/tr_whole_package/main.js +3 -0
  2540. data/test/dummy/node_modules/module-deps/test/files/tr_whole_package/node_modules/algo/index.js +3 -0
  2541. data/test/dummy/node_modules/module-deps/test/files/tr_whole_package/node_modules/algo/lib/decrement.js +1 -0
  2542. data/test/dummy/node_modules/module-deps/test/files/tr_whole_package/node_modules/algo/node_modules/insert-ggg/index.js +8 -0
  2543. data/test/dummy/node_modules/module-deps/test/files/tr_whole_package/node_modules/algo/package.json +6 -0
  2544. data/test/dummy/node_modules/module-deps/test/files/unicode/bar.js +3 -0
  2545. data/test/dummy/node_modules/module-deps/test/files/unicode/foo.js +5 -0
  2546. data/test/dummy/node_modules/module-deps/test/files/unicode/main.js +2 -0
  2547. data/test/dummy/node_modules/module-deps/test/files/xyz.js +2 -0
  2548. data/test/dummy/node_modules/module-deps/test/filter.js +36 -0
  2549. data/test/dummy/node_modules/module-deps/test/ignore_missing.js +60 -0
  2550. data/test/dummy/node_modules/module-deps/test/ignore_missing/main.js +1 -0
  2551. data/test/dummy/node_modules/module-deps/test/ignore_missing/other.js +1 -0
  2552. data/test/dummy/node_modules/module-deps/test/ignore_missing_cache.js +52 -0
  2553. data/test/dummy/node_modules/module-deps/test/node_modules/insert-www/index.js +8 -0
  2554. data/test/dummy/node_modules/module-deps/test/noparse.js +43 -0
  2555. data/test/dummy/node_modules/module-deps/test/noparse_row.js +39 -0
  2556. data/test/dummy/node_modules/module-deps/test/pkg.js +20 -0
  2557. data/test/dummy/node_modules/module-deps/test/pkg/main.js +2 -0
  2558. data/test/dummy/node_modules/module-deps/test/pkg/package.json +4 -0
  2559. data/test/dummy/node_modules/module-deps/test/pkg_filter.js +26 -0
  2560. data/test/dummy/node_modules/module-deps/test/row_expose.js +24 -0
  2561. data/test/dummy/node_modules/module-deps/test/row_expose_name_is_file_transform.js +32 -0
  2562. data/test/dummy/node_modules/module-deps/test/row_expose_transform.js +31 -0
  2563. data/test/dummy/node_modules/module-deps/test/source.js +61 -0
  2564. data/test/dummy/node_modules/module-deps/test/tr_2dep_module.js +23 -0
  2565. data/test/dummy/node_modules/module-deps/test/tr_err.js +21 -0
  2566. data/test/dummy/node_modules/module-deps/test/tr_flags.js +44 -0
  2567. data/test/dummy/node_modules/module-deps/test/tr_flags/empty.js +0 -0
  2568. data/test/dummy/node_modules/module-deps/test/tr_fn.js +32 -0
  2569. data/test/dummy/node_modules/module-deps/test/tr_global.js +29 -0
  2570. data/test/dummy/node_modules/module-deps/test/tr_module.js +23 -0
  2571. data/test/dummy/node_modules/module-deps/test/tr_no_entry.js +31 -0
  2572. data/test/dummy/node_modules/module-deps/test/tr_opts.js +21 -0
  2573. data/test/dummy/node_modules/module-deps/test/tr_opts/main.js +1 -0
  2574. data/test/dummy/node_modules/module-deps/test/tr_opts/package.json +7 -0
  2575. data/test/dummy/node_modules/module-deps/test/tr_rel.js +24 -0
  2576. data/test/dummy/node_modules/module-deps/test/tr_sh.js +23 -0
  2577. data/test/dummy/node_modules/module-deps/test/tr_whole_package.js +22 -0
  2578. data/test/dummy/node_modules/module-deps/test/tr_write.js +32 -0
  2579. data/test/dummy/node_modules/module-deps/test/tr_write/main.js +1 -0
  2580. data/test/dummy/node_modules/module-deps/test/undef_file.js +49 -0
  2581. data/test/dummy/node_modules/module-deps/test/unicode.js +49 -0
  2582. data/test/dummy/node_modules/once/LICENSE +15 -0
  2583. data/test/dummy/node_modules/once/README.md +51 -0
  2584. data/test/dummy/node_modules/once/once.js +21 -0
  2585. data/test/dummy/node_modules/once/package.json +89 -0
  2586. data/test/dummy/node_modules/os-browserify/LICENSE +21 -0
  2587. data/test/dummy/node_modules/os-browserify/README.md +2 -0
  2588. data/test/dummy/node_modules/os-browserify/browser.js +45 -0
  2589. data/test/dummy/node_modules/os-browserify/main.js +1 -0
  2590. data/test/dummy/node_modules/os-browserify/package.json +67 -0
  2591. data/test/dummy/node_modules/pako/CHANGELOG.md +90 -0
  2592. data/test/dummy/node_modules/pako/LICENSE +21 -0
  2593. data/test/dummy/node_modules/pako/README.md +176 -0
  2594. data/test/dummy/node_modules/pako/dist/pako.js +6606 -0
  2595. data/test/dummy/node_modules/pako/dist/pako.min.js +3 -0
  2596. data/test/dummy/node_modules/pako/dist/pako_deflate.js +3879 -0
  2597. data/test/dummy/node_modules/pako/dist/pako_deflate.min.js +2 -0
  2598. data/test/dummy/node_modules/pako/dist/pako_inflate.js +3127 -0
  2599. data/test/dummy/node_modules/pako/dist/pako_inflate.min.js +2 -0
  2600. data/test/dummy/node_modules/pako/index.js +14 -0
  2601. data/test/dummy/node_modules/pako/lib/deflate.js +400 -0
  2602. data/test/dummy/node_modules/pako/lib/inflate.js +418 -0
  2603. data/test/dummy/node_modules/pako/lib/utils/common.js +102 -0
  2604. data/test/dummy/node_modules/pako/lib/utils/strings.js +185 -0
  2605. data/test/dummy/node_modules/pako/lib/zlib/adler32.js +32 -0
  2606. data/test/dummy/node_modules/pako/lib/zlib/constants.js +50 -0
  2607. data/test/dummy/node_modules/pako/lib/zlib/crc32.js +41 -0
  2608. data/test/dummy/node_modules/pako/lib/zlib/deflate.js +1855 -0
  2609. data/test/dummy/node_modules/pako/lib/zlib/gzheader.js +40 -0
  2610. data/test/dummy/node_modules/pako/lib/zlib/inffast.js +326 -0
  2611. data/test/dummy/node_modules/pako/lib/zlib/inflate.js +1538 -0
  2612. data/test/dummy/node_modules/pako/lib/zlib/inftrees.js +327 -0
  2613. data/test/dummy/node_modules/pako/lib/zlib/messages.js +13 -0
  2614. data/test/dummy/node_modules/pako/lib/zlib/trees.js +1202 -0
  2615. data/test/dummy/node_modules/pako/lib/zlib/zstream.js +29 -0
  2616. data/test/dummy/node_modules/pako/package.json +106 -0
  2617. data/test/dummy/node_modules/parents/LICENSE +18 -0
  2618. data/test/dummy/node_modules/parents/example/dirname.js +3 -0
  2619. data/test/dummy/node_modules/parents/example/win32.js +5 -0
  2620. data/test/dummy/node_modules/parents/index.js +48 -0
  2621. data/test/dummy/node_modules/parents/package.json +91 -0
  2622. data/test/dummy/node_modules/parents/readme.markdown +75 -0
  2623. data/test/dummy/node_modules/parents/test/dirname.js +20 -0
  2624. data/test/dummy/node_modules/parents/test/win32.js +34 -0
  2625. data/test/dummy/node_modules/parse-asn1/README.md +8 -0
  2626. data/test/dummy/node_modules/parse-asn1/aesid.json +13 -0
  2627. data/test/dummy/node_modules/parse-asn1/asn1.js +117 -0
  2628. data/test/dummy/node_modules/parse-asn1/fixProc.js +30 -0
  2629. data/test/dummy/node_modules/parse-asn1/index.js +101 -0
  2630. data/test/dummy/node_modules/parse-asn1/package.json +97 -0
  2631. data/test/dummy/node_modules/parse-asn1/test/1024.priv +16 -0
  2632. data/test/dummy/node_modules/parse-asn1/test/1024.pub +6 -0
  2633. data/test/dummy/node_modules/parse-asn1/test/dsa.1024.priv +18 -0
  2634. data/test/dummy/node_modules/parse-asn1/test/dsa.1024.pub +12 -0
  2635. data/test/dummy/node_modules/parse-asn1/test/dsa.2048.priv +20 -0
  2636. data/test/dummy/node_modules/parse-asn1/test/dsa.2048.pub +20 -0
  2637. data/test/dummy/node_modules/parse-asn1/test/ec.pass.priv +7 -0
  2638. data/test/dummy/node_modules/parse-asn1/test/ec.priv +5 -0
  2639. data/test/dummy/node_modules/parse-asn1/test/ec.pub +4 -0
  2640. data/test/dummy/node_modules/parse-asn1/test/index.js +92 -0
  2641. data/test/dummy/node_modules/parse-asn1/test/pass.1024.priv +18 -0
  2642. data/test/dummy/node_modules/parse-asn1/test/pass.1024.pub +6 -0
  2643. data/test/dummy/node_modules/parse-asn1/test/pass.dsa.1024.priv +11 -0
  2644. data/test/dummy/node_modules/parse-asn1/test/pass.dsa.1024.pub +12 -0
  2645. data/test/dummy/node_modules/parse-asn1/test/pass.rsa.1024.priv +18 -0
  2646. data/test/dummy/node_modules/parse-asn1/test/pass.rsa.1024.pub +6 -0
  2647. data/test/dummy/node_modules/parse-asn1/test/pass.rsa.2028.priv +30 -0
  2648. data/test/dummy/node_modules/parse-asn1/test/pass.rsa.2028.pub +9 -0
  2649. data/test/dummy/node_modules/parse-asn1/test/pass2.dsa.1024.priv +15 -0
  2650. data/test/dummy/node_modules/parse-asn1/test/pass2.dsa.1024.pub +12 -0
  2651. data/test/dummy/node_modules/parse-asn1/test/rsa.1024.priv +15 -0
  2652. data/test/dummy/node_modules/parse-asn1/test/rsa.1024.pub +5 -0
  2653. data/test/dummy/node_modules/parse-asn1/test/rsa.2028.priv +27 -0
  2654. data/test/dummy/node_modules/parse-asn1/test/rsa.2028.pub +8 -0
  2655. data/test/dummy/node_modules/parse-asn1/test/vector.js +7 -0
  2656. data/test/dummy/node_modules/parse-asn1/test/vector.priv +12 -0
  2657. data/test/dummy/node_modules/parse-asn1/test/vector2.priv +19 -0
  2658. data/test/dummy/node_modules/path-browserify/LICENSE +18 -0
  2659. data/test/dummy/node_modules/path-browserify/index.js +224 -0
  2660. data/test/dummy/node_modules/path-browserify/package.json +78 -0
  2661. data/test/dummy/node_modules/path-browserify/readme.markdown +3 -0
  2662. data/test/dummy/node_modules/path-is-absolute/index.js +20 -0
  2663. data/test/dummy/node_modules/path-is-absolute/license +21 -0
  2664. data/test/dummy/node_modules/path-is-absolute/package.json +97 -0
  2665. data/test/dummy/node_modules/path-is-absolute/readme.md +51 -0
  2666. data/test/dummy/node_modules/path-platform/LICENSE +3 -0
  2667. data/test/dummy/node_modules/path-platform/README.md +5 -0
  2668. data/test/dummy/node_modules/path-platform/package.json +79 -0
  2669. data/test/dummy/node_modules/path-platform/path.js +643 -0
  2670. data/test/dummy/node_modules/pbkdf2/LICENSE +21 -0
  2671. data/test/dummy/node_modules/pbkdf2/README.md +24 -0
  2672. data/test/dummy/node_modules/pbkdf2/async-shim.js +19 -0
  2673. data/test/dummy/node_modules/pbkdf2/browser.js +80 -0
  2674. data/test/dummy/node_modules/pbkdf2/index.js +92 -0
  2675. data/test/dummy/node_modules/pbkdf2/package.json +116 -0
  2676. data/test/dummy/node_modules/pbkdf2/test/fixtures.json +171 -0
  2677. data/test/dummy/node_modules/pbkdf2/test/index.html +13 -0
  2678. data/test/dummy/node_modules/pbkdf2/test/index.js +93 -0
  2679. data/test/dummy/node_modules/process-nextick-args/index.js +43 -0
  2680. data/test/dummy/node_modules/process-nextick-args/license.md +19 -0
  2681. data/test/dummy/node_modules/process-nextick-args/package.json +77 -0
  2682. data/test/dummy/node_modules/process-nextick-args/readme.md +18 -0
  2683. data/test/dummy/node_modules/process-nextick-args/test.js +24 -0
  2684. data/test/dummy/node_modules/process/LICENSE +22 -0
  2685. data/test/dummy/node_modules/process/README.md +26 -0
  2686. data/test/dummy/node_modules/process/browser.js +160 -0
  2687. data/test/dummy/node_modules/process/index.js +2 -0
  2688. data/test/dummy/node_modules/process/package.json +97 -0
  2689. data/test/dummy/node_modules/process/test.js +150 -0
  2690. data/test/dummy/node_modules/public-encrypt/browser.js +10 -0
  2691. data/test/dummy/node_modules/public-encrypt/index.js +18 -0
  2692. data/test/dummy/node_modules/public-encrypt/mgf.js +16 -0
  2693. data/test/dummy/node_modules/public-encrypt/package.json +97 -0
  2694. data/test/dummy/node_modules/public-encrypt/privateDecrypt.js +108 -0
  2695. data/test/dummy/node_modules/public-encrypt/publicEncrypt.js +95 -0
  2696. data/test/dummy/node_modules/public-encrypt/readme.md +6 -0
  2697. data/test/dummy/node_modules/public-encrypt/test/1024.priv +16 -0
  2698. data/test/dummy/node_modules/public-encrypt/test/1024.pub +6 -0
  2699. data/test/dummy/node_modules/public-encrypt/test/ec.pass.priv +7 -0
  2700. data/test/dummy/node_modules/public-encrypt/test/ec.priv +5 -0
  2701. data/test/dummy/node_modules/public-encrypt/test/ec.pub +4 -0
  2702. data/test/dummy/node_modules/public-encrypt/test/index.js +117 -0
  2703. data/test/dummy/node_modules/public-encrypt/test/nodeTests.js +51 -0
  2704. data/test/dummy/node_modules/public-encrypt/test/pass.1024.priv +18 -0
  2705. data/test/dummy/node_modules/public-encrypt/test/pass.1024.pub +6 -0
  2706. data/test/dummy/node_modules/public-encrypt/test/rsa.1024.priv +15 -0
  2707. data/test/dummy/node_modules/public-encrypt/test/rsa.1024.pub +5 -0
  2708. data/test/dummy/node_modules/public-encrypt/test/rsa.2028.priv +27 -0
  2709. data/test/dummy/node_modules/public-encrypt/test/rsa.2028.pub +8 -0
  2710. data/test/dummy/node_modules/public-encrypt/test/rsa.pass.priv +30 -0
  2711. data/test/dummy/node_modules/public-encrypt/test/rsa.pass.pub +9 -0
  2712. data/test/dummy/node_modules/public-encrypt/test/test_cert.pem +20 -0
  2713. data/test/dummy/node_modules/public-encrypt/test/test_key.pem +15 -0
  2714. data/test/dummy/node_modules/public-encrypt/test/test_rsa_privkey.pem +15 -0
  2715. data/test/dummy/node_modules/public-encrypt/test/test_rsa_privkey_encrypted.pem +18 -0
  2716. data/test/dummy/node_modules/public-encrypt/test/test_rsa_pubkey.pem +6 -0
  2717. data/test/dummy/node_modules/public-encrypt/withPublic.js +10 -0
  2718. data/test/dummy/node_modules/public-encrypt/xor.js +8 -0
  2719. data/test/dummy/node_modules/punycode/LICENSE-MIT.txt +20 -0
  2720. data/test/dummy/node_modules/punycode/README.md +176 -0
  2721. data/test/dummy/node_modules/punycode/package.json +119 -0
  2722. data/test/dummy/node_modules/punycode/punycode.js +533 -0
  2723. data/test/dummy/node_modules/querystring-es3/History.md +20 -0
  2724. data/test/dummy/node_modules/querystring-es3/License.md +19 -0
  2725. data/test/dummy/node_modules/querystring-es3/Readme.md +15 -0
  2726. data/test/dummy/node_modules/querystring-es3/decode.js +84 -0
  2727. data/test/dummy/node_modules/querystring-es3/encode.js +85 -0
  2728. data/test/dummy/node_modules/querystring-es3/index.js +4 -0
  2729. data/test/dummy/node_modules/querystring-es3/package.json +124 -0
  2730. data/test/dummy/node_modules/querystring-es3/test/common-index.js +3 -0
  2731. data/test/dummy/node_modules/querystring-es3/test/index.js +210 -0
  2732. data/test/dummy/node_modules/querystring-es3/test/tap-index.js +3 -0
  2733. data/test/dummy/node_modules/querystring/History.md +20 -0
  2734. data/test/dummy/node_modules/querystring/License.md +19 -0
  2735. data/test/dummy/node_modules/querystring/Readme.md +15 -0
  2736. data/test/dummy/node_modules/querystring/decode.js +80 -0
  2737. data/test/dummy/node_modules/querystring/encode.js +64 -0
  2738. data/test/dummy/node_modules/querystring/index.js +4 -0
  2739. data/test/dummy/node_modules/querystring/package.json +122 -0
  2740. data/test/dummy/node_modules/querystring/test/common-index.js +3 -0
  2741. data/test/dummy/node_modules/querystring/test/index.js +210 -0
  2742. data/test/dummy/node_modules/querystring/test/tap-index.js +3 -0
  2743. data/test/dummy/node_modules/randombytes/README.md +14 -0
  2744. data/test/dummy/node_modules/randombytes/browser.js +36 -0
  2745. data/test/dummy/node_modules/randombytes/index.js +1 -0
  2746. data/test/dummy/node_modules/randombytes/package.json +105 -0
  2747. data/test/dummy/node_modules/randombytes/test.js +56 -0
  2748. data/test/dummy/node_modules/read-only-stream/LICENSE +18 -0
  2749. data/test/dummy/node_modules/read-only-stream/example/main.js +3 -0
  2750. data/test/dummy/node_modules/read-only-stream/example/wrap.js +8 -0
  2751. data/test/dummy/node_modules/read-only-stream/index.js +30 -0
  2752. data/test/dummy/node_modules/read-only-stream/package.json +86 -0
  2753. data/test/dummy/node_modules/read-only-stream/readme.markdown +60 -0
  2754. data/test/dummy/node_modules/read-only-stream/test/error.js +15 -0
  2755. data/test/dummy/node_modules/read-only-stream/test/ro.js +22 -0
  2756. data/test/dummy/node_modules/read-only-stream/test/streams1.js +21 -0
  2757. data/test/dummy/node_modules/readable-stream/LICENSE +18 -0
  2758. data/test/dummy/node_modules/readable-stream/README.md +36 -0
  2759. data/test/dummy/node_modules/readable-stream/doc/stream.md +1772 -0
  2760. data/test/dummy/node_modules/readable-stream/doc/wg-meetings/2015-01-30.md +60 -0
  2761. data/test/dummy/node_modules/readable-stream/duplex.js +1 -0
  2762. data/test/dummy/node_modules/readable-stream/lib/_stream_duplex.js +75 -0
  2763. data/test/dummy/node_modules/readable-stream/lib/_stream_passthrough.js +26 -0
  2764. data/test/dummy/node_modules/readable-stream/lib/_stream_readable.js +893 -0
  2765. data/test/dummy/node_modules/readable-stream/lib/_stream_transform.js +180 -0
  2766. data/test/dummy/node_modules/readable-stream/lib/_stream_writable.js +526 -0
  2767. data/test/dummy/node_modules/readable-stream/package.json +124 -0
  2768. data/test/dummy/node_modules/readable-stream/passthrough.js +1 -0
  2769. data/test/dummy/node_modules/readable-stream/readable.js +16 -0
  2770. data/test/dummy/node_modules/readable-stream/transform.js +1 -0
  2771. data/test/dummy/node_modules/readable-stream/writable.js +1 -0
  2772. data/test/dummy/node_modules/resolve/LICENSE +18 -0
  2773. data/test/dummy/node_modules/resolve/example/async.js +5 -0
  2774. data/test/dummy/node_modules/resolve/example/sync.js +3 -0
  2775. data/test/dummy/node_modules/resolve/index.js +5 -0
  2776. data/test/dummy/node_modules/resolve/lib/async.js +192 -0
  2777. data/test/dummy/node_modules/resolve/lib/caller.js +8 -0
  2778. data/test/dummy/node_modules/resolve/lib/core.js +4 -0
  2779. data/test/dummy/node_modules/resolve/lib/core.json +38 -0
  2780. data/test/dummy/node_modules/resolve/lib/node-modules-paths.js +38 -0
  2781. data/test/dummy/node_modules/resolve/lib/sync.js +81 -0
  2782. data/test/dummy/node_modules/resolve/package.json +84 -0
  2783. data/test/dummy/node_modules/resolve/readme.markdown +148 -0
  2784. data/test/dummy/node_modules/resolve/test/core.js +12 -0
  2785. data/test/dummy/node_modules/resolve/test/dotdot.js +29 -0
  2786. data/test/dummy/node_modules/resolve/test/dotdot/abc/index.js +2 -0
  2787. data/test/dummy/node_modules/resolve/test/dotdot/index.js +1 -0
  2788. data/test/dummy/node_modules/resolve/test/faulty_basedir.js +17 -0
  2789. data/test/dummy/node_modules/resolve/test/filter.js +18 -0
  2790. data/test/dummy/node_modules/resolve/test/filter_sync.js +15 -0
  2791. data/test/dummy/node_modules/resolve/test/mock.js +142 -0
  2792. data/test/dummy/node_modules/resolve/test/mock_sync.js +68 -0
  2793. data/test/dummy/node_modules/resolve/test/module_dir.js +56 -0
  2794. data/test/dummy/node_modules/resolve/test/module_dir/xmodules/aaa/index.js +1 -0
  2795. data/test/dummy/node_modules/resolve/test/module_dir/ymodules/aaa/index.js +1 -0
  2796. data/test/dummy/node_modules/resolve/test/module_dir/zmodules/bbb/main.js +1 -0
  2797. data/test/dummy/node_modules/resolve/test/module_dir/zmodules/bbb/package.json +3 -0
  2798. data/test/dummy/node_modules/resolve/test/node_path.js +48 -0
  2799. data/test/dummy/node_modules/resolve/test/node_path/x/aaa/index.js +1 -0
  2800. data/test/dummy/node_modules/resolve/test/node_path/x/ccc/index.js +1 -0
  2801. data/test/dummy/node_modules/resolve/test/node_path/y/bbb/index.js +1 -0
  2802. data/test/dummy/node_modules/resolve/test/node_path/y/ccc/index.js +1 -0
  2803. data/test/dummy/node_modules/resolve/test/nonstring.js +9 -0
  2804. data/test/dummy/node_modules/resolve/test/pathfilter.js +35 -0
  2805. data/test/dummy/node_modules/resolve/test/pathfilter/deep_ref/main.js +0 -0
  2806. data/test/dummy/node_modules/resolve/test/pathfilter/deep_ref/node_modules/deep/alt.js +0 -0
  2807. data/test/dummy/node_modules/resolve/test/pathfilter/deep_ref/node_modules/deep/deeper/ref.js +0 -0
  2808. data/test/dummy/node_modules/resolve/test/pathfilter/deep_ref/node_modules/deep/package.json +4 -0
  2809. data/test/dummy/node_modules/resolve/test/pathfilter/deep_ref/node_modules/deep/ref.js +0 -0
  2810. data/test/dummy/node_modules/resolve/test/precedence.js +23 -0
  2811. data/test/dummy/node_modules/resolve/test/precedence/aaa.js +1 -0
  2812. data/test/dummy/node_modules/resolve/test/precedence/aaa/index.js +1 -0
  2813. data/test/dummy/node_modules/resolve/test/precedence/aaa/main.js +1 -0
  2814. data/test/dummy/node_modules/resolve/test/precedence/bbb.js +1 -0
  2815. data/test/dummy/node_modules/resolve/test/precedence/bbb/main.js +1 -0
  2816. data/test/dummy/node_modules/resolve/test/resolver.js +281 -0
  2817. data/test/dummy/node_modules/resolve/test/resolver/bar/node_modules/foo/index.js +1 -0
  2818. data/test/dummy/node_modules/resolve/test/resolver/baz/doom.js +0 -0
  2819. data/test/dummy/node_modules/resolve/test/resolver/baz/package.json +3 -0
  2820. data/test/dummy/node_modules/resolve/test/resolver/baz/quux.js +1 -0
  2821. data/test/dummy/node_modules/resolve/test/resolver/biz/node_modules/garply/lib/index.js +1 -0
  2822. data/test/dummy/node_modules/resolve/test/resolver/biz/node_modules/garply/package.json +3 -0
  2823. data/test/dummy/node_modules/resolve/test/resolver/biz/node_modules/grux/index.js +1 -0
  2824. data/test/dummy/node_modules/resolve/test/resolver/biz/node_modules/tiv/index.js +1 -0
  2825. data/test/dummy/node_modules/resolve/test/resolver/cup.coffee +1 -0
  2826. data/test/dummy/node_modules/resolve/test/resolver/foo.js +1 -0
  2827. data/test/dummy/node_modules/resolve/test/resolver/incorrect_main/index.js +2 -0
  2828. data/test/dummy/node_modules/resolve/test/resolver/incorrect_main/package.json +3 -0
  2829. data/test/dummy/node_modules/resolve/test/resolver/mug.coffee +0 -0
  2830. data/test/dummy/node_modules/resolve/test/resolver/mug.js +0 -0
  2831. data/test/dummy/node_modules/resolve/test/resolver/other_path/lib/other-lib.js +0 -0
  2832. data/test/dummy/node_modules/resolve/test/resolver/other_path/root.js +0 -0
  2833. data/test/dummy/node_modules/resolve/test/resolver/punycode/node_modules/punycode/index.js +0 -0
  2834. data/test/dummy/node_modules/resolve/test/resolver/quux/foo/index.js +1 -0
  2835. data/test/dummy/node_modules/resolve/test/resolver/without_basedir/main.js +6 -0
  2836. data/test/dummy/node_modules/resolve/test/resolver/without_basedir/node_modules/mymodule.js +1 -0
  2837. data/test/dummy/node_modules/resolve/test/resolver_sync.js +180 -0
  2838. data/test/dummy/node_modules/resolve/test/subdirs.js +13 -0
  2839. data/test/dummy/node_modules/resolve/test/subdirs/node_modules/a/b/c/x.json +1 -0
  2840. data/test/dummy/node_modules/resolve/test/subdirs/node_modules/a/package.json +1 -0
  2841. data/test/dummy/node_modules/ripemd160/CHANGELOG.md +36 -0
  2842. data/test/dummy/node_modules/ripemd160/README.md +100 -0
  2843. data/test/dummy/node_modules/ripemd160/lib/ripemd160.js +210 -0
  2844. data/test/dummy/node_modules/ripemd160/package.json +106 -0
  2845. data/test/dummy/node_modules/sha.js/LICENSE +22 -0
  2846. data/test/dummy/node_modules/sha.js/README.md +54 -0
  2847. data/test/dummy/node_modules/sha.js/bin.js +43 -0
  2848. data/test/dummy/node_modules/sha.js/hash.js +69 -0
  2849. data/test/dummy/node_modules/sha.js/hexpp.js +26 -0
  2850. data/test/dummy/node_modules/sha.js/index.js +15 -0
  2851. data/test/dummy/node_modules/sha.js/package.json +95 -0
  2852. data/test/dummy/node_modules/sha.js/sha.js +93 -0
  2853. data/test/dummy/node_modules/sha.js/sha1.js +98 -0
  2854. data/test/dummy/node_modules/sha.js/sha224.js +52 -0
  2855. data/test/dummy/node_modules/sha.js/sha256.js +134 -0
  2856. data/test/dummy/node_modules/sha.js/sha384.js +56 -0
  2857. data/test/dummy/node_modules/sha.js/sha512.js +259 -0
  2858. data/test/dummy/node_modules/sha.js/test/hash.js +86 -0
  2859. data/test/dummy/node_modules/sha.js/test/test.js +85 -0
  2860. data/test/dummy/node_modules/sha.js/test/vectors.js +76 -0
  2861. data/test/dummy/node_modules/shasum/LICENSE +22 -0
  2862. data/test/dummy/node_modules/shasum/README.md +15 -0
  2863. data/test/dummy/node_modules/shasum/browser.js +13 -0
  2864. data/test/dummy/node_modules/shasum/index.js +13 -0
  2865. data/test/dummy/node_modules/shasum/package.json +79 -0
  2866. data/test/dummy/node_modules/shasum/test/index.js +18 -0
  2867. data/test/dummy/node_modules/shell-quote/LICENSE +24 -0
  2868. data/test/dummy/node_modules/shell-quote/example/env.js +3 -0
  2869. data/test/dummy/node_modules/shell-quote/example/op.js +3 -0
  2870. data/test/dummy/node_modules/shell-quote/example/parse.js +3 -0
  2871. data/test/dummy/node_modules/shell-quote/example/quote.js +3 -0
  2872. data/test/dummy/node_modules/shell-quote/index.js +199 -0
  2873. data/test/dummy/node_modules/shell-quote/package.json +111 -0
  2874. data/test/dummy/node_modules/shell-quote/readme.markdown +142 -0
  2875. data/test/dummy/node_modules/shell-quote/test/comment.js +14 -0
  2876. data/test/dummy/node_modules/shell-quote/test/env.js +39 -0
  2877. data/test/dummy/node_modules/shell-quote/test/env_fn.js +19 -0
  2878. data/test/dummy/node_modules/shell-quote/test/op.js +67 -0
  2879. data/test/dummy/node_modules/shell-quote/test/parse.js +23 -0
  2880. data/test/dummy/node_modules/shell-quote/test/quote.js +33 -0
  2881. data/test/dummy/node_modules/shell-quote/test/set.js +29 -0
  2882. data/test/dummy/node_modules/source-map/CHANGELOG.md +301 -0
  2883. data/test/dummy/node_modules/source-map/LICENSE +28 -0
  2884. data/test/dummy/node_modules/source-map/README.md +729 -0
  2885. data/test/dummy/node_modules/source-map/dist/source-map.debug.js +3056 -0
  2886. data/test/dummy/node_modules/source-map/dist/source-map.js +3055 -0
  2887. data/test/dummy/node_modules/source-map/dist/source-map.min.js +2 -0
  2888. data/test/dummy/node_modules/source-map/dist/source-map.min.js.map +1 -0
  2889. data/test/dummy/node_modules/source-map/lib/array-set.js +104 -0
  2890. data/test/dummy/node_modules/source-map/lib/base64-vlq.js +140 -0
  2891. data/test/dummy/node_modules/source-map/lib/base64.js +67 -0
  2892. data/test/dummy/node_modules/source-map/lib/binary-search.js +111 -0
  2893. data/test/dummy/node_modules/source-map/lib/mapping-list.js +79 -0
  2894. data/test/dummy/node_modules/source-map/lib/quick-sort.js +114 -0
  2895. data/test/dummy/node_modules/source-map/lib/source-map-consumer.js +1082 -0
  2896. data/test/dummy/node_modules/source-map/lib/source-map-generator.js +404 -0
  2897. data/test/dummy/node_modules/source-map/lib/source-node.js +407 -0
  2898. data/test/dummy/node_modules/source-map/lib/util.js +417 -0
  2899. data/test/dummy/node_modules/source-map/package.json +247 -0
  2900. data/test/dummy/node_modules/source-map/source-map.js +8 -0
  2901. data/test/dummy/node_modules/stream-browserify/LICENSE +18 -0
  2902. data/test/dummy/node_modules/stream-browserify/index.js +127 -0
  2903. data/test/dummy/node_modules/stream-browserify/package.json +110 -0
  2904. data/test/dummy/node_modules/stream-browserify/readme.markdown +25 -0
  2905. data/test/dummy/node_modules/stream-browserify/test/buf.js +32 -0
  2906. data/test/dummy/node_modules/stream-combiner2/LICENSE +22 -0
  2907. data/test/dummy/node_modules/stream-combiner2/README.md +37 -0
  2908. data/test/dummy/node_modules/stream-combiner2/index.js +68 -0
  2909. data/test/dummy/node_modules/stream-combiner2/package.json +79 -0
  2910. data/test/dummy/node_modules/stream-combiner2/test/index.js +98 -0
  2911. data/test/dummy/node_modules/stream-http/LICENSE +24 -0
  2912. data/test/dummy/node_modules/stream-http/README.md +130 -0
  2913. data/test/dummy/node_modules/stream-http/ie8-polyfill.js +168 -0
  2914. data/test/dummy/node_modules/stream-http/index.js +79 -0
  2915. data/test/dummy/node_modules/stream-http/lib/capability.js +40 -0
  2916. data/test/dummy/node_modules/stream-http/lib/request.js +277 -0
  2917. data/test/dummy/node_modules/stream-http/lib/response.js +180 -0
  2918. data/test/dummy/node_modules/stream-http/package.json +104 -0
  2919. data/test/dummy/node_modules/stream-http/test/browser/abort.js +55 -0
  2920. data/test/dummy/node_modules/stream-http/test/browser/auth.js +22 -0
  2921. data/test/dummy/node_modules/stream-http/test/browser/binary-streaming.js +71 -0
  2922. data/test/dummy/node_modules/stream-http/test/browser/binary.js +32 -0
  2923. data/test/dummy/node_modules/stream-http/test/browser/cookie.js +25 -0
  2924. data/test/dummy/node_modules/stream-http/test/browser/error.js.disabled +12 -0
  2925. data/test/dummy/node_modules/stream-http/test/browser/headers.js +75 -0
  2926. data/test/dummy/node_modules/stream-http/test/browser/lib/webworker-worker.js +20 -0
  2927. data/test/dummy/node_modules/stream-http/test/browser/package.json +5 -0
  2928. data/test/dummy/node_modules/stream-http/test/browser/post-binary.js +42 -0
  2929. data/test/dummy/node_modules/stream-http/test/browser/post-text.js +48 -0
  2930. data/test/dummy/node_modules/stream-http/test/browser/text-streaming.js +43 -0
  2931. data/test/dummy/node_modules/stream-http/test/browser/text.js +44 -0
  2932. data/test/dummy/node_modules/stream-http/test/browser/webworker.js +32 -0
  2933. data/test/dummy/node_modules/stream-http/test/node/http-browserify.js +133 -0
  2934. data/test/dummy/node_modules/stream-http/test/server/index.js +115 -0
  2935. data/test/dummy/node_modules/stream-http/test/server/static/basic.txt +19 -0
  2936. data/test/dummy/node_modules/stream-http/test/server/static/browserify.png +0 -0
  2937. data/test/dummy/node_modules/stream-http/test/server/static/test-polyfill.js +9 -0
  2938. data/test/dummy/node_modules/stream-splicer/LICENSE +18 -0
  2939. data/test/dummy/node_modules/stream-splicer/example/header.js +22 -0
  2940. data/test/dummy/node_modules/stream-splicer/index.js +196 -0
  2941. data/test/dummy/node_modules/stream-splicer/package.json +87 -0
  2942. data/test/dummy/node_modules/stream-splicer/readme.markdown +139 -0
  2943. data/test/dummy/node_modules/stream-splicer/test/combiner.js +31 -0
  2944. data/test/dummy/node_modules/stream-splicer/test/combiner_stream.js +29 -0
  2945. data/test/dummy/node_modules/stream-splicer/test/empty.js +17 -0
  2946. data/test/dummy/node_modules/stream-splicer/test/empty_no_data.js +13 -0
  2947. data/test/dummy/node_modules/stream-splicer/test/get.js +41 -0
  2948. data/test/dummy/node_modules/stream-splicer/test/multipush.js +31 -0
  2949. data/test/dummy/node_modules/stream-splicer/test/multiunshift.js +31 -0
  2950. data/test/dummy/node_modules/stream-splicer/test/nested.js +36 -0
  2951. data/test/dummy/node_modules/stream-splicer/test/nested_middle.js +42 -0
  2952. data/test/dummy/node_modules/stream-splicer/test/pop.js +46 -0
  2953. data/test/dummy/node_modules/stream-splicer/test/push.js +57 -0
  2954. data/test/dummy/node_modules/stream-splicer/test/shift.js +46 -0
  2955. data/test/dummy/node_modules/stream-splicer/test/splice.js +58 -0
  2956. data/test/dummy/node_modules/stream-splicer/test/unshift.js +46 -0
  2957. data/test/dummy/node_modules/string_decoder/LICENSE +20 -0
  2958. data/test/dummy/node_modules/string_decoder/README.md +7 -0
  2959. data/test/dummy/node_modules/string_decoder/index.js +221 -0
  2960. data/test/dummy/node_modules/string_decoder/package.json +82 -0
  2961. data/test/dummy/node_modules/subarg/LICENSE +18 -0
  2962. data/test/dummy/node_modules/subarg/example/show.js +3 -0
  2963. data/test/dummy/node_modules/subarg/index.js +35 -0
  2964. data/test/dummy/node_modules/subarg/package.json +105 -0
  2965. data/test/dummy/node_modules/subarg/readme.markdown +55 -0
  2966. data/test/dummy/node_modules/subarg/test/arg.js +31 -0
  2967. data/test/dummy/node_modules/subarg/test/recursive.js +24 -0
  2968. data/test/dummy/node_modules/syntax-error/LICENSE +18 -0
  2969. data/test/dummy/node_modules/syntax-error/example/check.js +12 -0
  2970. data/test/dummy/node_modules/syntax-error/example/src.js +9 -0
  2971. data/test/dummy/node_modules/syntax-error/index.js +59 -0
  2972. data/test/dummy/node_modules/syntax-error/node_modules/acorn/AUTHORS +43 -0
  2973. data/test/dummy/node_modules/syntax-error/node_modules/acorn/LICENSE +19 -0
  2974. data/test/dummy/node_modules/syntax-error/node_modules/acorn/README.md +396 -0
  2975. data/test/dummy/node_modules/syntax-error/node_modules/acorn/bin/acorn +71 -0
  2976. data/test/dummy/node_modules/syntax-error/node_modules/acorn/bin/build-acorn.js +82 -0
  2977. data/test/dummy/node_modules/syntax-error/node_modules/acorn/bin/generate-identifier-regex.js +47 -0
  2978. data/test/dummy/node_modules/syntax-error/node_modules/acorn/bin/update_authors.sh +6 -0
  2979. data/test/dummy/node_modules/syntax-error/node_modules/acorn/dist/acorn.js +3340 -0
  2980. data/test/dummy/node_modules/syntax-error/node_modules/acorn/dist/acorn_loose.js +1300 -0
  2981. data/test/dummy/node_modules/syntax-error/node_modules/acorn/dist/walk.js +377 -0
  2982. data/test/dummy/node_modules/syntax-error/node_modules/acorn/package.json +213 -0
  2983. data/test/dummy/node_modules/syntax-error/node_modules/acorn/src/bin/acorn.js +59 -0
  2984. data/test/dummy/node_modules/syntax-error/node_modules/acorn/src/expression.js +707 -0
  2985. data/test/dummy/node_modules/syntax-error/node_modules/acorn/src/identifier.js +90 -0
  2986. data/test/dummy/node_modules/syntax-error/node_modules/acorn/src/index.js +67 -0
  2987. data/test/dummy/node_modules/syntax-error/node_modules/acorn/src/location.js +24 -0
  2988. data/test/dummy/node_modules/syntax-error/node_modules/acorn/src/locutil.js +42 -0
  2989. data/test/dummy/node_modules/syntax-error/node_modules/acorn/src/loose/acorn_loose.js +0 -0
  2990. data/test/dummy/node_modules/syntax-error/node_modules/acorn/src/loose/expression.js +501 -0
  2991. data/test/dummy/node_modules/syntax-error/node_modules/acorn/src/loose/index.js +50 -0
  2992. data/test/dummy/node_modules/syntax-error/node_modules/acorn/src/loose/parseutil.js +1 -0
  2993. data/test/dummy/node_modules/syntax-error/node_modules/acorn/src/loose/state.js +160 -0
  2994. data/test/dummy/node_modules/syntax-error/node_modules/acorn/src/loose/statement.js +420 -0
  2995. data/test/dummy/node_modules/syntax-error/node_modules/acorn/src/loose/tokenize.js +108 -0
  2996. data/test/dummy/node_modules/syntax-error/node_modules/acorn/src/lval.js +215 -0
  2997. data/test/dummy/node_modules/syntax-error/node_modules/acorn/src/node.js +50 -0
  2998. data/test/dummy/node_modules/syntax-error/node_modules/acorn/src/options.js +121 -0
  2999. data/test/dummy/node_modules/syntax-error/node_modules/acorn/src/parseutil.js +102 -0
  3000. data/test/dummy/node_modules/syntax-error/node_modules/acorn/src/state.js +104 -0
  3001. data/test/dummy/node_modules/syntax-error/node_modules/acorn/src/statement.js +626 -0
  3002. data/test/dummy/node_modules/syntax-error/node_modules/acorn/src/tokencontext.js +109 -0
  3003. data/test/dummy/node_modules/syntax-error/node_modules/acorn/src/tokenize.js +682 -0
  3004. data/test/dummy/node_modules/syntax-error/node_modules/acorn/src/tokentype.js +147 -0
  3005. data/test/dummy/node_modules/syntax-error/node_modules/acorn/src/util.js +9 -0
  3006. data/test/dummy/node_modules/syntax-error/node_modules/acorn/src/walk/index.js +340 -0
  3007. data/test/dummy/node_modules/syntax-error/node_modules/acorn/src/whitespace.js +12 -0
  3008. data/test/dummy/node_modules/syntax-error/package.json +100 -0
  3009. data/test/dummy/node_modules/syntax-error/readme.markdown +87 -0
  3010. data/test/dummy/node_modules/syntax-error/test/check.js +17 -0
  3011. data/test/dummy/node_modules/syntax-error/test/html.js +16 -0
  3012. data/test/dummy/node_modules/syntax-error/test/ok.js +13 -0
  3013. data/test/dummy/node_modules/syntax-error/test/run.js +12 -0
  3014. data/test/dummy/node_modules/syntax-error/test/run2.js +12 -0
  3015. data/test/dummy/node_modules/syntax-error/test/shebang.js +13 -0
  3016. data/test/dummy/node_modules/syntax-error/test/sources/check.js +9 -0
  3017. data/test/dummy/node_modules/syntax-error/test/sources/ok.js +1 -0
  3018. data/test/dummy/node_modules/syntax-error/test/sources/run.js +1 -0
  3019. data/test/dummy/node_modules/syntax-error/test/sources/run2.js +3 -0
  3020. data/test/dummy/node_modules/syntax-error/test/sources/shebang.js +2 -0
  3021. data/test/dummy/node_modules/syntax-error/test/sources/yield.js +13 -0
  3022. data/test/dummy/node_modules/syntax-error/test/yield.js +13 -0
  3023. data/test/dummy/node_modules/through/LICENSE.APACHE2 +15 -0
  3024. data/test/dummy/node_modules/through/LICENSE.MIT +24 -0
  3025. data/test/dummy/node_modules/through/index.js +108 -0
  3026. data/test/dummy/node_modules/through/package.json +93 -0
  3027. data/test/dummy/node_modules/through/readme.markdown +64 -0
  3028. data/test/dummy/node_modules/through/test/async.js +28 -0
  3029. data/test/dummy/node_modules/through/test/auto-destroy.js +30 -0
  3030. data/test/dummy/node_modules/through/test/buffering.js +71 -0
  3031. data/test/dummy/node_modules/through/test/end.js +45 -0
  3032. data/test/dummy/node_modules/through/test/index.js +133 -0
  3033. data/test/dummy/node_modules/through2/LICENSE +39 -0
  3034. data/test/dummy/node_modules/through2/README.md +133 -0
  3035. data/test/dummy/node_modules/through2/node_modules/readable-stream/LICENSE +18 -0
  3036. data/test/dummy/node_modules/through2/node_modules/readable-stream/README.md +36 -0
  3037. data/test/dummy/node_modules/through2/node_modules/readable-stream/doc/stream.markdown +1760 -0
  3038. data/test/dummy/node_modules/through2/node_modules/readable-stream/doc/wg-meetings/2015-01-30.md +60 -0
  3039. data/test/dummy/node_modules/through2/node_modules/readable-stream/duplex.js +1 -0
  3040. data/test/dummy/node_modules/through2/node_modules/readable-stream/lib/_stream_duplex.js +75 -0
  3041. data/test/dummy/node_modules/through2/node_modules/readable-stream/lib/_stream_passthrough.js +26 -0
  3042. data/test/dummy/node_modules/through2/node_modules/readable-stream/lib/_stream_readable.js +880 -0
  3043. data/test/dummy/node_modules/through2/node_modules/readable-stream/lib/_stream_transform.js +180 -0
  3044. data/test/dummy/node_modules/through2/node_modules/readable-stream/lib/_stream_writable.js +516 -0
  3045. data/test/dummy/node_modules/through2/node_modules/readable-stream/package.json +105 -0
  3046. data/test/dummy/node_modules/through2/node_modules/readable-stream/passthrough.js +1 -0
  3047. data/test/dummy/node_modules/through2/node_modules/readable-stream/readable.js +12 -0
  3048. data/test/dummy/node_modules/through2/node_modules/readable-stream/transform.js +1 -0
  3049. data/test/dummy/node_modules/through2/node_modules/readable-stream/writable.js +1 -0
  3050. data/test/dummy/node_modules/through2/package.json +109 -0
  3051. data/test/dummy/node_modules/through2/through2.js +96 -0
  3052. data/test/dummy/node_modules/timers-browserify/CHANGELOG.md +58 -0
  3053. data/test/dummy/node_modules/timers-browserify/LICENSE.md +46 -0
  3054. data/test/dummy/node_modules/timers-browserify/README.md +40 -0
  3055. data/test/dummy/node_modules/timers-browserify/example/enroll/build.sh +3 -0
  3056. data/test/dummy/node_modules/timers-browserify/example/enroll/index.html +8 -0
  3057. data/test/dummy/node_modules/timers-browserify/example/enroll/js/browserify.js +233 -0
  3058. data/test/dummy/node_modules/timers-browserify/example/enroll/js/main.js +14 -0
  3059. data/test/dummy/node_modules/timers-browserify/example/enroll/server.js +11 -0
  3060. data/test/dummy/node_modules/timers-browserify/main.js +76 -0
  3061. data/test/dummy/node_modules/timers-browserify/package.json +126 -0
  3062. data/test/dummy/node_modules/to-arraybuffer/LICENSE +24 -0
  3063. data/test/dummy/node_modules/to-arraybuffer/README.md +27 -0
  3064. data/test/dummy/node_modules/to-arraybuffer/index.js +27 -0
  3065. data/test/dummy/node_modules/to-arraybuffer/package.json +85 -0
  3066. data/test/dummy/node_modules/to-arraybuffer/test.js +57 -0
  3067. data/test/dummy/node_modules/tty-browserify/LICENSE +18 -0
  3068. data/test/dummy/node_modules/tty-browserify/index.js +11 -0
  3069. data/test/dummy/node_modules/tty-browserify/package.json +78 -0
  3070. data/test/dummy/node_modules/tty-browserify/readme.markdown +1 -0
  3071. data/test/dummy/node_modules/typedarray/LICENSE +35 -0
  3072. data/test/dummy/node_modules/typedarray/example/tarray.js +4 -0
  3073. data/test/dummy/node_modules/typedarray/index.js +630 -0
  3074. data/test/dummy/node_modules/typedarray/package.json +105 -0
  3075. data/test/dummy/node_modules/typedarray/readme.markdown +61 -0
  3076. data/test/dummy/node_modules/typedarray/test/server/undef_globals.js +19 -0
  3077. data/test/dummy/node_modules/typedarray/test/tarray.js +10 -0
  3078. data/test/dummy/node_modules/umd/README.md +82 -0
  3079. data/test/dummy/node_modules/umd/bin/cli.js +43 -0
  3080. data/test/dummy/node_modules/umd/index.js +78 -0
  3081. data/test/dummy/node_modules/umd/package.json +95 -0
  3082. data/test/dummy/node_modules/url/LICENSE +21 -0
  3083. data/test/dummy/node_modules/url/README.md +108 -0
  3084. data/test/dummy/node_modules/url/node_modules/punycode/LICENSE-MIT.txt +20 -0
  3085. data/test/dummy/node_modules/url/node_modules/punycode/README.md +176 -0
  3086. data/test/dummy/node_modules/url/node_modules/punycode/package.json +107 -0
  3087. data/test/dummy/node_modules/url/node_modules/punycode/punycode.js +530 -0
  3088. data/test/dummy/node_modules/url/package.json +80 -0
  3089. data/test/dummy/node_modules/url/test.js +1599 -0
  3090. data/test/dummy/node_modules/url/url.js +732 -0
  3091. data/test/dummy/node_modules/url/util.js +16 -0
  3092. data/test/dummy/node_modules/util-deprecate/History.md +16 -0
  3093. data/test/dummy/node_modules/util-deprecate/LICENSE +24 -0
  3094. data/test/dummy/node_modules/util-deprecate/README.md +53 -0
  3095. data/test/dummy/node_modules/util-deprecate/browser.js +67 -0
  3096. data/test/dummy/node_modules/util-deprecate/node.js +6 -0
  3097. data/test/dummy/node_modules/util-deprecate/package.json +83 -0
  3098. data/test/dummy/node_modules/util/LICENSE +18 -0
  3099. data/test/dummy/node_modules/util/README.md +15 -0
  3100. data/test/dummy/node_modules/util/package.json +81 -0
  3101. data/test/dummy/node_modules/util/support/isBuffer.js +3 -0
  3102. data/test/dummy/node_modules/util/support/isBufferBrowser.js +6 -0
  3103. data/test/dummy/node_modules/util/test/browser/inspect.js +41 -0
  3104. data/test/dummy/node_modules/util/test/browser/is.js +91 -0
  3105. data/test/dummy/node_modules/util/test/node/debug.js +86 -0
  3106. data/test/dummy/node_modules/util/test/node/format.js +77 -0
  3107. data/test/dummy/node_modules/util/test/node/inspect.js +195 -0
  3108. data/test/dummy/node_modules/util/test/node/log.js +58 -0
  3109. data/test/dummy/node_modules/util/test/node/util.js +83 -0
  3110. data/test/dummy/node_modules/util/util.js +586 -0
  3111. data/test/dummy/node_modules/vm-browserify/LICENSE +18 -0
  3112. data/test/dummy/node_modules/vm-browserify/example/run/bundle.js +473 -0
  3113. data/test/dummy/node_modules/vm-browserify/example/run/entry.js +6 -0
  3114. data/test/dummy/node_modules/vm-browserify/example/run/index.html +9 -0
  3115. data/test/dummy/node_modules/vm-browserify/example/run/server.js +6 -0
  3116. data/test/dummy/node_modules/vm-browserify/index.js +138 -0
  3117. data/test/dummy/node_modules/vm-browserify/package.json +96 -0
  3118. data/test/dummy/node_modules/vm-browserify/readme.markdown +67 -0
  3119. data/test/dummy/node_modules/vm-browserify/test/vm.js +35 -0
  3120. data/test/dummy/node_modules/wrappy/LICENSE +15 -0
  3121. data/test/dummy/node_modules/wrappy/README.md +36 -0
  3122. data/test/dummy/node_modules/wrappy/package.json +89 -0
  3123. data/test/dummy/node_modules/wrappy/wrappy.js +33 -0
  3124. data/test/dummy/node_modules/xtend/LICENCE +19 -0
  3125. data/test/dummy/node_modules/xtend/Makefile +4 -0
  3126. data/test/dummy/node_modules/xtend/README.md +32 -0
  3127. data/test/dummy/node_modules/xtend/immutable.js +19 -0
  3128. data/test/dummy/node_modules/xtend/mutable.js +17 -0
  3129. data/test/dummy/node_modules/xtend/package.json +115 -0
  3130. data/test/dummy/node_modules/xtend/test.js +83 -0
  3131. data/test/dummy/package.json +14 -0
  3132. data/test/dummy/test/controllers/home_controller_test.rb +7 -0
  3133. data/test/dummy/tmp/cache/assets/sprockets/v3.0/-A/-ADsj610n8DbJL5k0AUWKpKIk_Dcefkrf2lNP5xVo0k.cache +1 -0
  3134. data/test/dummy/tmp/cache/assets/sprockets/v3.0/-O/-Op2tCoCUJ9VIn039M92tRP3Sq7nYoHRMzTdE6RjrsE.cache +1 -0
  3135. data/test/dummy/tmp/cache/assets/sprockets/v3.0/-P/-PVFQe4QzaT0rsS1EewJMwAaXyhnicWAxmS-kCzk3ro.cache +0 -0
  3136. data/test/dummy/tmp/cache/assets/sprockets/v3.0/-V/-VI_Zny6Tt6HwFXrPYBq8jGtmDKoowrjFcnn6ZtnV1k.cache +0 -0
  3137. data/test/dummy/tmp/cache/assets/sprockets/v3.0/-Y/-Ym2PBkGtyVtNFqPjl-uyYHczzSrY5fnVgzExulAlLk.cache +6 -0
  3138. data/test/dummy/tmp/cache/assets/sprockets/v3.0/-q/-qnf63ZEcj3SJTAElFfjXPZM4uPlvsHk5Kr1cjAlvi8.cache +0 -0
  3139. data/test/dummy/tmp/cache/assets/sprockets/v3.0/-w/-wW4JJD19L-ZblzgWzg8EBYNZWIuvcENuhMJH1IcB2A.cache +0 -0
  3140. data/test/dummy/tmp/cache/assets/sprockets/v3.0/-z/-zEKv1-YpisgzCu_D0_oxsssAQqC3aDUsDzwTzUZuPY.cache +1 -0
  3141. data/test/dummy/tmp/cache/assets/sprockets/v3.0/06/065CQXLkrSFiUCRNOfLbeqTyqO5h9_6dCO2h_yYf5Eg.cache +1 -0
  3142. data/test/dummy/tmp/cache/assets/sprockets/v3.0/0L/0Lw7vDZEPN-8sCOem5OB5VGtj6fx9NUsCjb_BkDZTFQ.cache +0 -0
  3143. data/test/dummy/tmp/cache/assets/sprockets/v3.0/0Q/0QnIMtKLw3SQDqDV3vf1Lt1ds0-xIrbKFq-7thhgkQA.cache +0 -0
  3144. data/test/dummy/tmp/cache/assets/sprockets/v3.0/0X/0XpLe_7y-WPmq6ue0YIOwzkNHu82B2KD-dVGl7fSnbs.cache +0 -0
  3145. data/test/dummy/tmp/cache/assets/sprockets/v3.0/0Z/0Z2nxk4McR2wmUvUs2hxLd6f4qODqP8AS6REf8zoS20.cache +1 -0
  3146. data/test/dummy/tmp/cache/assets/sprockets/v3.0/0h/0hEJwDLVmx92rM_4_gK_7FwMQidLZv6gSxym3rxOASw.cache +2 -0
  3147. data/test/dummy/tmp/cache/assets/sprockets/v3.0/1P/1PdveYiaNFMcb9fHGDMw3E7KGfpi1MWa-99tyky7xTA.cache +1 -0
  3148. data/test/dummy/tmp/cache/assets/sprockets/v3.0/1k/1k3IkaqddYD0EPZKLm5lPGVyXV16Ovsg9PTerXn53xo.cache +0 -0
  3149. data/test/dummy/tmp/cache/assets/sprockets/v3.0/22/22vy0YlckR1qHFgWyTgVLIjgxr4sxx8rcQHM7cUbuj8.cache +2 -0
  3150. data/test/dummy/tmp/cache/assets/sprockets/v3.0/25/25vek3_rT-Vte9djTYcWkhQ0FkeSFyBicaNGsdZehrI.cache +3 -0
  3151. data/test/dummy/tmp/cache/assets/sprockets/v3.0/2E/2ESawR7Fx4N7DoNZHDttMblbcMYPHgtCnv20VbToo-s.cache +1 -0
  3152. data/test/dummy/tmp/cache/assets/sprockets/v3.0/2F/2Fg27on_jNhTbiO31ILaGpXucnmGsH-vwVu_qFS2fi4.cache +0 -0
  3153. data/test/dummy/tmp/cache/assets/sprockets/v3.0/2Q/2QheEgENfRWzIGiULY5am-Dv9dqN4rM2bZwc_eyPLok.cache +0 -0
  3154. data/test/dummy/tmp/cache/assets/sprockets/v3.0/2Q/2Qwsu6mzEQrmQ5pZbMbYiU2rGWhHm_9RWQ8okWgd1Z4.cache +3 -0
  3155. data/test/dummy/tmp/cache/assets/sprockets/v3.0/2U/2ULXGm2rR7TZMguqx6WR_S0d8lXsRKgGongjpktRxGU.cache +1 -0
  3156. data/test/dummy/tmp/cache/assets/sprockets/v3.0/2Z/2ZjkCWeXSGzWYFAaG9EA1OFFbBSZ1Tfo_Jb1uZIlxNw.cache +4 -0
  3157. data/test/dummy/tmp/cache/assets/sprockets/v3.0/3H/3HDhzMwCU_vSaaQ7_BEx-zDzO2T38ISh6j3zS2sGZr4.cache +0 -0
  3158. data/test/dummy/tmp/cache/assets/sprockets/v3.0/3K/3KP5HF1A66VFt98YndPVdxGYXNN10lA4cfjKSdMl15g.cache +1 -0
  3159. data/test/dummy/tmp/cache/assets/sprockets/v3.0/3L/3Lse0TYFJK8ORmIA2FQ54UC-rEmIJyRiDvT3vQV4jAM.cache +1 -0
  3160. data/test/dummy/tmp/cache/assets/sprockets/v3.0/3j/3Jt91RARUa1cbRoI1GiL4lyJrz23hUpQUHOln-1nT-k.cache +1 -0
  3161. data/test/dummy/tmp/cache/assets/sprockets/v3.0/3j/3jKuabpGxa8g3vX3pprA-8wmsF_6EBOn0lMoNqqSW88.cache +1 -0
  3162. data/test/dummy/tmp/cache/assets/sprockets/v3.0/3v/3vGjt22AYBhXDYKhsJHo1_JisaMcmkwPbxhqaxjm6-U.cache +1 -0
  3163. data/test/dummy/tmp/cache/assets/sprockets/v3.0/3y/3y-aQ6VAc3-gBP9WBY_FlFGXf37VrLv482qeeE1bgqI.cache +0 -0
  3164. data/test/dummy/tmp/cache/assets/sprockets/v3.0/4A/4A7fS6zzzJg-1EuECDrHmVcgm1oGuyu8UxajYRMzT_E.cache +1 -0
  3165. data/test/dummy/tmp/cache/assets/sprockets/v3.0/4U/4UtskDCNsRmJTFtTdKavQgAxDCoPFOJEaeuyGIeGnGo.cache +0 -0
  3166. data/test/dummy/tmp/cache/assets/sprockets/v3.0/4W/4Wa6cxdTUQ-ANkssWDJnwJFSL3lILeLHPASbBO665Ds.cache +1 -0
  3167. data/test/dummy/tmp/cache/assets/sprockets/v3.0/4c/4cY7Ua7b23e_bb689u1hr_nfgJuNzfaRzclm3nqbpSI.cache +0 -0
  3168. data/test/dummy/tmp/cache/assets/sprockets/v3.0/4d/4dsYea-PpIraz1KSwfBLqQ-MPxzvHDjMH_H-5mOZYLo.cache +1 -0
  3169. data/test/dummy/tmp/cache/assets/sprockets/v3.0/4p/4pRuy8RMQTorhHWxNT3cIA4PYEbMGeQyAI4ik_KtZs4.cache +0 -0
  3170. data/test/dummy/tmp/cache/assets/sprockets/v3.0/4v/4vsNlrcBYMhGnu83VfcJ3cIAXs2xODdlglmEAedZmag.cache +1 -0
  3171. data/test/dummy/tmp/cache/assets/sprockets/v3.0/52/52FPzJue25iCwmAwzLWpueHGMxGLCey7qOnNIi5jITQ.cache +0 -0
  3172. data/test/dummy/tmp/cache/assets/sprockets/v3.0/56/56WOF-y8Xv5GohG1EsejNBX-anBwGw8plMq78A_wE4M.cache +1 -0
  3173. data/test/dummy/tmp/cache/assets/sprockets/v3.0/56/56tGNOuoCiXR3GOKYIHMUEiuYNLM6GeToTW3ZJ1rViM.cache +0 -0
  3174. data/test/dummy/tmp/cache/assets/sprockets/v3.0/57/57lL0iLEg5y6c84HeNllLVxbwqU-cQTsaCq1komkP7o.cache +0 -0
  3175. data/test/dummy/tmp/cache/assets/sprockets/v3.0/5H/5HkkHDTRDSFGEiTaS77oZme2zW1-vnRZ8w5Ou6rGynM.cache +3 -0
  3176. data/test/dummy/tmp/cache/assets/sprockets/v3.0/5H/5HukT6Grpe2ZGSS8SiXignwE7bG2ByUAck-2B8RBxCc.cache +0 -0
  3177. data/test/dummy/tmp/cache/assets/sprockets/v3.0/5K/5KZbUPoNp-ZHdWiyhEtOV5dliYFqcGTpPaReiY5kWPA.cache +1 -0
  3178. data/test/dummy/tmp/cache/assets/sprockets/v3.0/5L/5L4QESMHSuWoGIUexdju0pEofIwXm_I0fCTg_-ebvQk.cache +1 -0
  3179. data/test/dummy/tmp/cache/assets/sprockets/v3.0/5O/5OJPbGxYL1MTFp803sw26sT4ZdiV9ugfvuUhlyhFEzQ.cache +1 -0
  3180. data/test/dummy/tmp/cache/assets/sprockets/v3.0/5U/5UCt02EmDk6x8tyf0ioKV6CnDs9jsn1mD8Rt1Y81lkc.cache +1 -0
  3181. data/test/dummy/tmp/cache/assets/sprockets/v3.0/5Z/5ZZoepOZzA0Mp47pkUD8CL79UoF9EyBNRXRhJqlJ1rE.cache +1 -0
  3182. data/test/dummy/tmp/cache/assets/sprockets/v3.0/5Z/5ZhSFj3cgKDz9JU-PMhqcOTjhs75MkI3aKeXJcvgeVE.cache +1 -0
  3183. data/test/dummy/tmp/cache/assets/sprockets/v3.0/5c/5cGv66b3KEr68pimkVpZx-FwQVGZGfg2TiSs4oZwzsQ.cache +1 -0
  3184. data/test/dummy/tmp/cache/assets/sprockets/v3.0/6K/6K0ua4nhdQpkkAia3JPCgXUwttu1FV4pq6GHLW-WTEw.cache +2 -0
  3185. data/test/dummy/tmp/cache/assets/sprockets/v3.0/6M/6MW3TAlVz_7gDik_rgzOVghb5M3VKOXmgBnW5lRrjt8.cache +0 -0
  3186. data/test/dummy/tmp/cache/assets/sprockets/v3.0/6S/6SA06NPYccsZgmZZSy-QbXGd9dvaNBz2pMBSlp-1flw.cache +1 -0
  3187. data/test/dummy/tmp/cache/assets/sprockets/v3.0/6_/6_1u6DyLVRfbTm047m7eHCVpf8peW_TkQYZz2pCDRP8.cache +1 -0
  3188. data/test/dummy/tmp/cache/assets/sprockets/v3.0/6b/6bdoiaOY6UT7q5PBXuU4aUW_pKGB8rrX9_34jiR49Dw.cache +1 -0
  3189. data/test/dummy/tmp/cache/assets/sprockets/v3.0/6f/6fdJZk44xEXN6jP9FE7C-L3a9DYgmfevavu6NRJvES4.cache +0 -0
  3190. data/test/dummy/tmp/cache/assets/sprockets/v3.0/6i/6igtVFHQTES2za4yyd_nLf3mi7zWx1kbphersxAfuic.cache +1 -0
  3191. data/test/dummy/tmp/cache/assets/sprockets/v3.0/7A/7ADYEWg_AICONX6Z5T_lLhhgTxpdG1lF-_jKIRgI2pw.cache +0 -0
  3192. data/test/dummy/tmp/cache/assets/sprockets/v3.0/7C/7CssbaRl7Pr9ez26fx5H0vsp__hHwp9W0EzxPcohR_I.cache +0 -0
  3193. data/test/dummy/tmp/cache/assets/sprockets/v3.0/7Z/7Zge4X9zzPAEOQVtQPMlX7CO_ppu2xDtqe8ra-hx95c.cache +1 -0
  3194. data/test/dummy/tmp/cache/assets/sprockets/v3.0/7d/7d8uzVblqZ8jqkxO-eSi-bjziHjMGvrPou-qsb9vwgY.cache +1 -0
  3195. data/test/dummy/tmp/cache/assets/sprockets/v3.0/7e/7eywHTxEBOxdw13VwdUZ3rwNgDYytmP7BjMEUTDz94M.cache +1 -0
  3196. data/test/dummy/tmp/cache/assets/sprockets/v3.0/8A/8ADjC0vVlWPUWphk_IiS6tG4DJtizljieQppbzG8W0I.cache +0 -0
  3197. data/test/dummy/tmp/cache/assets/sprockets/v3.0/8A/8AevRVztCtZbtXGJzcd7_tJVhrF2xqeqWl9rzOirPj4.cache +1 -0
  3198. data/test/dummy/tmp/cache/assets/sprockets/v3.0/8J/8JKabNCZYrQsLrN2TOLT36ysyJh7HX4hOLfs3nlgO0w.cache +1 -0
  3199. data/test/dummy/tmp/cache/assets/sprockets/v3.0/8S/8SOqmg-0U9b_G9FpOvMRJBxZjvEFrIKXXeZBbN52HJI.cache +1 -0
  3200. data/test/dummy/tmp/cache/assets/sprockets/v3.0/8d/8drqCnbtY-HsKwm1R1XEA-nYNfFqz58wjccjzwX71hg.cache +1 -0
  3201. data/test/dummy/tmp/cache/assets/sprockets/v3.0/8e/8eckYUq-YkiidE2wuClunGWw5omMeHwRGukuZCcVCII.cache +0 -0
  3202. data/test/dummy/tmp/cache/assets/sprockets/v3.0/95/95SO0fzMXHACFLHXIzUaU3HCMb_5vbQJWNxYYh7iszE.cache +0 -0
  3203. data/test/dummy/tmp/cache/assets/sprockets/v3.0/9A/9AW4-N69IydU29YYsBlnUJFS8mY2SJ2htw4suO6xg8A.cache +1 -0
  3204. data/test/dummy/tmp/cache/assets/sprockets/v3.0/9O/9OPmey1GfuSm3CY9prG9Wceh9pbR7RPueexyfLl-0gQ.cache +1 -0
  3205. data/test/dummy/tmp/cache/assets/sprockets/v3.0/9S/9StGW-Wi69pVZGMySNIbOY0wgjNmM1dEeFVvaamKK1k.cache +0 -0
  3206. data/test/dummy/tmp/cache/assets/sprockets/v3.0/9h/9h4Oiu6A-ovDwmWa_InsDipSr7K4V57v14a-oIyKjp0.cache +0 -0
  3207. data/test/dummy/tmp/cache/assets/sprockets/v3.0/9k/9kqNqxqmr4EAtOY2FBJwLo1y0Ip9bcilEqS9iSpuzFo.cache +0 -0
  3208. data/test/dummy/tmp/cache/assets/sprockets/v3.0/AR/ARU1PKTE_x-Q7nQ7okbpj1RUPZg0Rnnl5eth8Ty01oY.cache +1 -0
  3209. data/test/dummy/tmp/cache/assets/sprockets/v3.0/AY/AYiCOKRZROFbivlRuu2ri3_xVENAYEkrt4WF6Cw8xM8.cache +0 -0
  3210. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Ad/AdovFJSu1UySFWpdTsBnCF4QLl93EXdwDlXEeCVOdW0.cache +0 -0
  3211. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Ap/APnzu_4NWeIs-SEA_9YGiCxfI_Dkuxq23gDSh-rwjE4.cache +1 -0
  3212. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Ap/Ap7m0PDTBqATi_gQpT2ddVV1W2LfQ7csh9eM-kESUaw.cache +3 -0
  3213. data/test/dummy/tmp/cache/assets/sprockets/v3.0/B1/B1o9MSYJepiR8EgG9FK4sHd9vdQ1ivH5qLsBRMaXSD0.cache +0 -0
  3214. data/test/dummy/tmp/cache/assets/sprockets/v3.0/BB/BBbP6PrBPakeuIci0tcB1JI6G92ROJTsnToWMn2VuAQ.cache +0 -0
  3215. data/test/dummy/tmp/cache/assets/sprockets/v3.0/BB/BBhQudYuPMUnmT3g9nqCCYHt6T7qA9t4OZlzQzUk9aw.cache +0 -0
  3216. data/test/dummy/tmp/cache/assets/sprockets/v3.0/BB/BbEeWnTlunqPGuH1Euf_hLnYpU8O-VTgDcmzeWKCW_4.cache +1 -0
  3217. data/test/dummy/tmp/cache/assets/sprockets/v3.0/BD/BDkuNVg5WDcTS8h_daOsLJ-8molcJW2wAdTERKvvTd8.cache +0 -0
  3218. data/test/dummy/tmp/cache/assets/sprockets/v3.0/BD/bD0DqVLrvxWN2ZAy4vpkIxZm3wJVLtYBlQOSxPxmHZY.cache +1 -0
  3219. data/test/dummy/tmp/cache/assets/sprockets/v3.0/BD/bd_bKq_D0flwpjWr1XBpXM7YsI20WIbdjxx-ZI849eA.cache +1 -0
  3220. data/test/dummy/tmp/cache/assets/sprockets/v3.0/BF/BF_J7uIkB_7XqMlHZQvxrGOeKlWNpoTV9lppUWjazTg.cache +0 -0
  3221. data/test/dummy/tmp/cache/assets/sprockets/v3.0/BF/BFfL3VcZBfsmwC9ZdF09FrJaA2tthwnFPHlYofjqAx0.cache +0 -0
  3222. data/test/dummy/tmp/cache/assets/sprockets/v3.0/BI/BIo1Y3wqhqPwtD2Xo6hFFN4youzF3dV94iniM9cGtKE.cache +0 -0
  3223. data/test/dummy/tmp/cache/assets/sprockets/v3.0/BJ/BJfB739HzkJDnMZXf19yZJdMKrmnj3xXLJY8LSRJ-LE.cache +1 -0
  3224. data/test/dummy/tmp/cache/assets/sprockets/v3.0/B_/B_lxAP_tpjxK3rqK5Azx85ZMwloRC-6NYU3M9uBeLls.cache +1 -0
  3225. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Bo/BO475sWH0qkotN2_U3tp94j8AA4sXyrhfwSBtQ6enWI.cache +1 -0
  3226. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Bo/Bo-ZR0nGBfay8dkdYBZM6A2g-5QJtyEABBlzLfEPxIQ.cache +0 -0
  3227. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Bo/BoYEYoIlpKykpIczIcMHRj7p9D35Q7N_5wMiosHMK3g.cache +1 -0
  3228. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Bo/bogk2Pi8SkdKNkHHM04jpfsraBIxd4su5ffMuM7SolQ.cache +1 -0
  3229. data/test/dummy/tmp/cache/assets/sprockets/v3.0/CE/CEvHmiBklRRkiAkuJlkeQXHI-iTCcm154JLGwTvMq-I.cache +1 -0
  3230. data/test/dummy/tmp/cache/assets/sprockets/v3.0/CT/CTMgpCZh-avts9NY_QUhCfsizOl51Ge_ELPlr3xxGkY.cache +0 -0
  3231. data/test/dummy/tmp/cache/assets/sprockets/v3.0/CY/CYvSi0R832Iy9r3zlayKoLdZ-EaHCNiHT6S19tdqf1E.cache +0 -0
  3232. data/test/dummy/tmp/cache/assets/sprockets/v3.0/C_/C__yLX8VGxTvtYfdwky_-C-SaWi5Zwu193Vtaajwqj4.cache +1 -0
  3233. data/test/dummy/tmp/cache/assets/sprockets/v3.0/C_/C_hSxk0rc7rOQGDIHtpxJY2_TeBal-wwWm4yfy9QKfE.cache +1 -0
  3234. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Cb/Cb8e7sVQojNZPnwAAauXSI3bgyLDd49bn2yHV5eZjV8.cache +1 -0
  3235. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Cb/CbkI8FIP5TYOecmLRH8r5TwxoE6uItdVMgQT2NWchfc.cache +1 -0
  3236. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Cj/CjHm2b4oWYskSWwnl87GSfGEaitHFbjs5G9uvUZLeyA.cache +0 -0
  3237. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Cm/CmLb2FiPKeMN4iXbYm8eHWNClf_1auLGwPgNeMwUsEs.cache +0 -0
  3238. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Cz/Czdd-BrZBfso3UGtZaKT17bIOXDzTqXgKkyxtoUBcpg.cache +1 -0
  3239. data/test/dummy/tmp/cache/assets/sprockets/v3.0/D2/D2faSUBPXfy4In4DE9OJ5L3XCw1rv-YcEXZzdG3doRA.cache +0 -0
  3240. data/test/dummy/tmp/cache/assets/sprockets/v3.0/DC/DC3-DgtRuQf8KIE972hKkl7vTMGMoMW3cFzQ7A5pQmM.cache +0 -0
  3241. data/test/dummy/tmp/cache/assets/sprockets/v3.0/DC/DCZSZEuZjva6Iuwe_hdqdX5RCLuF0i67KM7fMOhnZuM.cache +0 -0
  3242. data/test/dummy/tmp/cache/assets/sprockets/v3.0/DC/DcUQNIMUgk0rkixymCypEnozBfSZVXNj5igbW5AWnFI.cache +3 -0
  3243. data/test/dummy/tmp/cache/assets/sprockets/v3.0/DC/dCUCdDy4YlulBgmVtpWbgGq5tIde8JcXc8bxzaL8Mww.cache +1 -0
  3244. data/test/dummy/tmp/cache/assets/sprockets/v3.0/DL/DL7s2_2UjoETF3hjWHE6Vua5veM7AzdZC69w8cpBF28.cache +1 -0
  3245. data/test/dummy/tmp/cache/assets/sprockets/v3.0/DS/DSOLSc6A5RVSmvM415eEWAWG_AgOvZcLZOXQjsXyWQA.cache +2 -0
  3246. data/test/dummy/tmp/cache/assets/sprockets/v3.0/DU/DUK04fTGC1nm4UTdF0QtcFxQqr3JFXgmImibCGOsTdI.cache +1 -0
  3247. data/test/dummy/tmp/cache/assets/sprockets/v3.0/DU/DuE4zEsdsm2he0qVfN-O-wTjN1AptSJSIG9G6Vi64zI.cache +1 -0
  3248. data/test/dummy/tmp/cache/assets/sprockets/v3.0/DU/duf8IEn9RyDHe0eCDKZU7b2MlcCjRawS5Te7mCHL_ew.cache +1 -0
  3249. data/test/dummy/tmp/cache/assets/sprockets/v3.0/DZ/DZ40Xb1N9rWLozPXt8B3riMpHuQkfrpJha8fLZEMjwI.cache +1 -0
  3250. data/test/dummy/tmp/cache/assets/sprockets/v3.0/DZ/DZPQghkp8WSDqJDcwdyvTvVetS_Ifwzc7RC7FSvFaf8.cache +3 -0
  3251. data/test/dummy/tmp/cache/assets/sprockets/v3.0/DZ/dzBR7Fot56xGo2ezewcyIsIstapMV9xBXnYDqvbDLyw.cache +1 -0
  3252. data/test/dummy/tmp/cache/assets/sprockets/v3.0/De/Dee1YXJG2c5jJ4UAp4FqTnm7dQfseR-9-QW6SvxIxX4.cache +0 -0
  3253. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Dm/Dm75l4HC0UNvRw20W0ImkwP2TOMGJ4mDEYxD5dbkzXQ.cache +1 -0
  3254. data/test/dummy/tmp/cache/assets/sprockets/v3.0/E5/E5fLcVqF1HL8felylM1mt88XIJJIdzJ2-2MDHb4Ty2w.cache +0 -0
  3255. data/test/dummy/tmp/cache/assets/sprockets/v3.0/EA/EAeQvOSUTgiPSMAj0-_-GIoCRBq_x5bxbh-8Zo9rJOw.cache +0 -0
  3256. data/test/dummy/tmp/cache/assets/sprockets/v3.0/EC/ECRDAu9NRcKKvpMBh5t_7H8J9fRZ4xNrv-XG-JsjTk8.cache +2 -0
  3257. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Ed/EdtiM64df8HRn7FiQOr1EpxAFFeTeKVgk48ze0yPcoA.cache +1 -0
  3258. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Eo/EozYqFrzdXReZiPxC-ExB7W9BNCID0f6tFfwkuvnycQ.cache +0 -0
  3259. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Es/Eso9MYgnSDI4dpNpkXjwUKJqN73iKSe6Era9P74opk8.cache +0 -0
  3260. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Et/EtLf_ssLHYKyOFn7TWsvnSnP42h-x5gPMBQjZfyfZKU.cache +1 -0
  3261. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Et/Etu6s2UUpzqClMueCfPHj6ehWxnSPfJeA4LR9IEDdcs.cache +1 -0
  3262. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Ex/EXysrznYiJ80nay0BoU4Eh4xksb9Jzklvt46yfwDfUU.cache +1 -0
  3263. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Ex/Ex7gEMOzGpyOMvgHM-qqm4ZwctNNHlimLPNO0DNaDkA.cache +1 -0
  3264. data/test/dummy/tmp/cache/assets/sprockets/v3.0/F5/F5XSZEM7AlrZu3q9PbTJ9Y5WBoOLcmGEHHGVxW8wQdA.cache +0 -0
  3265. data/test/dummy/tmp/cache/assets/sprockets/v3.0/F7/F7qps57D7onVQG5jeh8QUgadnZutiemDeDTdU8S5-VM.cache +1 -0
  3266. data/test/dummy/tmp/cache/assets/sprockets/v3.0/F_/F_Hic9UHB8DtblW_iTak140YlTTOpuyEiP9iLfPKCVA.cache +0 -0
  3267. data/test/dummy/tmp/cache/assets/sprockets/v3.0/F_/f_JfohhGbr6uxJqytC5EY9hypSZEvx_exNhvFyXu3ac.cache +3 -0
  3268. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Ff/FfOcZkZIqoZ1W49_7aC4As7G68U3k1fbGPhQlZF3OSY.cache +1 -0
  3269. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Fq/FqXOCuc3jmL9T2YixmPQGPyOEqeKX7nSy56F8AIF7BQ.cache +1 -0
  3270. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Fq/fqV_OT5sbu5xZg3wLB1bvLmFGH8S9Wub9JMbjXCXmqI.cache +0 -0
  3271. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Gt/GtzYQwwbWt8nW0i5HSSLspyuq4PcAYxxiwgu1pGYuAc.cache +1 -0
  3272. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Gw/GwwdaRZsj5zYURLrYohtpZLST7vsl6qFfKEBJP95P8Q.cache +0 -0
  3273. data/test/dummy/tmp/cache/assets/sprockets/v3.0/H7/H7LifKJfkvaSwsdhuRSTpTz_ASADlatv-OX23vkmn8A.cache +1 -0
  3274. data/test/dummy/tmp/cache/assets/sprockets/v3.0/H7/H7QP2SEt1YvPdGMitGfuipSRxhDvt4GkKmYfptI8pvw.cache +2 -0
  3275. data/test/dummy/tmp/cache/assets/sprockets/v3.0/H_/H_KNN9ud-e_fl1vx8HoF3-Bcn042lzXiEauFe_fmtC4.cache +3 -0
  3276. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Hb/Hb6JktiOYVo3AkrmvJGmzlPqRUumh3qoweyf1LJl_tI.cache +0 -0
  3277. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Hm/HmQjYUtdzGvmUWe24U16dSeTvLM_NQR7UlMhT0cwYaE.cache +0 -0
  3278. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Hm/hM0S5grrETR54z6NMRR0abU6OUNo4aymg6Jm3bsjlU4.cache +2 -0
  3279. data/test/dummy/tmp/cache/assets/sprockets/v3.0/IG/IGN4mkvNb_zNx6rRLZ7OI6tF6Sc5grh-VPw5hesF9M0.cache +0 -0
  3280. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Iu/Iu9Kl85N_wQ1cRr4dO4oyrWTsjK2cSi5TTfsW3WE3bg.cache +1 -0
  3281. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Iu/iUbVgD_p-5CLfcyNTlIlucIuRiAhCE4uIOEFJMdCTYw.cache +2 -0
  3282. data/test/dummy/tmp/cache/assets/sprockets/v3.0/J8/J8-aF7OlayeCAmayI645-MmFXhYLgRJMWQmB748cQmQ.cache +1 -0
  3283. data/test/dummy/tmp/cache/assets/sprockets/v3.0/JF/JFIJ4EyMp8cZ2WViwGpaXRoAIeX5KgltejF1klQDinU.cache +1 -0
  3284. data/test/dummy/tmp/cache/assets/sprockets/v3.0/JG/JGPOz8kAb-6V09VLWlXjpm5L1jib7ajrSeRhPAfPPuo.cache +1 -0
  3285. data/test/dummy/tmp/cache/assets/sprockets/v3.0/JQ/JQJs7XUTM7Id_J2NvCSes--VyiuzSZPPLJZ0esZ-KI4.cache +1 -0
  3286. data/test/dummy/tmp/cache/assets/sprockets/v3.0/JX/JX_QyWfMuwem3Iqee50l-GBV1Jvuxs6kKjjr8Pf75xs.cache +1 -0
  3287. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Jh/JhNyLXdlMJBAhKUW8ymULJyC1LOYEizmHEijPwtIOW8.cache +1 -0
  3288. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Jh/JhPyHtSl82p14hKG8lNYEryo7OQEggV10Bb8GNgeckQ.cache +0 -0
  3289. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Jp/JpWdBJd1L9r5-OZ9M7uPNJCBqmCURgzB50ISKbl6Ls0.cache +1 -0
  3290. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Jv/Jv_KzgloVJdxahY4sqCYS-CUEULdP2eidESHb_MHl8Y.cache +1 -0
  3291. data/test/dummy/tmp/cache/assets/sprockets/v3.0/KD/KDkP5CjSerB0tNfWPrKd1W9oXl9sUO4bT3-SfPz2ko0.cache +3 -0
  3292. data/test/dummy/tmp/cache/assets/sprockets/v3.0/KJ/KJd2s9BHpG3jOKhJABMfpYjph3s3fUyKw15BELxT4WI.cache +1 -0
  3293. data/test/dummy/tmp/cache/assets/sprockets/v3.0/KP/KPCXeaLpPGMziVerPAgGTTrn66H1MG7LZZx6j2h82hA.cache +0 -0
  3294. data/test/dummy/tmp/cache/assets/sprockets/v3.0/KS/KSKscjz0uvJ7G0j354a16gvMWs9x4JWqqQb-RG_GoEM.cache +3 -0
  3295. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Kq/KqyEAcFURi-EF1OMvseWZMByI2N6P9nmlp1V0o6xYfs.cache +2 -0
  3296. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Kv/KvjTexcDUuqilTG0ciK54qutBiBV9cT681ODjl6o8Y4.cache +1 -0
  3297. data/test/dummy/tmp/cache/assets/sprockets/v3.0/L1/L1i-GSeO_29KNqk6RYrPot_SXICfhvgNv-zStom3Agk.cache +0 -0
  3298. data/test/dummy/tmp/cache/assets/sprockets/v3.0/LZ/LZEZgbKQ-hE0VlQtjwqwT2qEkHBV_Z_TSowIEGUHjuk.cache +0 -0
  3299. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Lf/LfD2FehislHJnEn0o91Ut6JyvuKS4YuIGTyIdH6sAiI.cache +1 -0
  3300. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Lx/LxVfZJoXVZ1ztq-K2y0wptcoqfw7exSBJI42uF4f5pw.cache +0 -0
  3301. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Lx/lXN7wnDLf36UMZ0PU2rJtxU8dSQwx36_XzbmGu4kBOQ.cache +1 -0
  3302. data/test/dummy/tmp/cache/assets/sprockets/v3.0/M2/M2bm_ayEAkfkw6gsByU8qBaReRDAvR-QutW04w3NewE.cache +0 -0
  3303. data/test/dummy/tmp/cache/assets/sprockets/v3.0/M5/M5DkJygss8d6l6wmiBgVWPSGOiC5dr4VCaAvj2QMtHs.cache +0 -0
  3304. data/test/dummy/tmp/cache/assets/sprockets/v3.0/MA/MAQ3o0T-R6rMecQaJl7T05Rv30CW1zuXYMdZMZpSXDU.cache +2 -0
  3305. data/test/dummy/tmp/cache/assets/sprockets/v3.0/ME/ME9-F9UAvU_LOyhVVFzOSHKg7T814DSBhcJhHFiFDGw.cache +0 -0
  3306. data/test/dummy/tmp/cache/assets/sprockets/v3.0/ME/metAFH6I8jhlZf7p6b9vO7i1_Nn8upNMnYUQ9ihKLwk.cache +4 -0
  3307. data/test/dummy/tmp/cache/assets/sprockets/v3.0/MF/MFz9FsTttL8a5zj98q5Jt1pgylg5AuWDB0YlIVKkC44.cache +1 -0
  3308. data/test/dummy/tmp/cache/assets/sprockets/v3.0/MF/mf50XFFGNFMFI2d2XD67muitv8cxGURoYZRSg1QjY5g.cache +0 -0
  3309. data/test/dummy/tmp/cache/assets/sprockets/v3.0/MM/MMF-dT5npXflcBPJ6dur3TVrimrynPhpU1hbuftinq8.cache +0 -0
  3310. data/test/dummy/tmp/cache/assets/sprockets/v3.0/MM/mmeFaaMhIXSPVuaJiFqC-xaO6kqfU9V0lrV6tieRkws.cache +2 -0
  3311. data/test/dummy/tmp/cache/assets/sprockets/v3.0/MO/MOItNAY4gg0xZpXVOQGJEXzhW75Cc1Dcv9kT3XhHUXE.cache +0 -0
  3312. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Mt/Mtt3o9RBdiCrmFJrOsdBiGz_3jZFs3tD8DBv1PEYMmI.cache +0 -0
  3313. data/test/dummy/tmp/cache/assets/sprockets/v3.0/N2/N2_t0EEUkAC-Rfz1Vfl3TOkaoDyLI8A7bcV-tjfoUZw.cache +1 -0
  3314. data/test/dummy/tmp/cache/assets/sprockets/v3.0/N_/N_QyoEfSptwKew-qNvausuMNVlMqK0uN0luniIBd12E.cache +0 -0
  3315. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Nb/Nb0aSDsQ9-UP37XmTlRSODE0zbBd4jjabwfSBmao9oQ.cache +2 -0
  3316. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Nd/NdPxLdo0rLdApgb7nEGCeHGdWe3ll21NiFVU9PY0Rek.cache +0 -0
  3317. data/test/dummy/tmp/cache/assets/sprockets/v3.0/O2/O2Ge2y3YEP1ALZVQaY4tSpxuE95r1k_tq9ph0p0U2vM.cache +3 -0
  3318. data/test/dummy/tmp/cache/assets/sprockets/v3.0/O2/O2n3zB3T2qvpXAUNgLyas8POShszW9eSzGEnh4OINLk.cache +1 -0
  3319. data/test/dummy/tmp/cache/assets/sprockets/v3.0/O3/O3XQNazA6bUnhm34_uhqmKHr6hgC2sSK5eAZBnZRLFY.cache +1 -0
  3320. data/test/dummy/tmp/cache/assets/sprockets/v3.0/OD/OD5dfcgWgLbuV6Qnnpmn6339Op2INXlzejUxHuWtGNw.cache +0 -0
  3321. data/test/dummy/tmp/cache/assets/sprockets/v3.0/OE/OEyUrQnvMNPYYN9aPIZ4qmlZLXnvQ1xVLcxgqJ7ktNY.cache +0 -0
  3322. data/test/dummy/tmp/cache/assets/sprockets/v3.0/OH/OHOR65_t_acAU7ZsNl4QTTG-EUlCcLbvKTHEqSyI5k4.cache +3 -0
  3323. data/test/dummy/tmp/cache/assets/sprockets/v3.0/OH/oh3VtNXXVl0WYA9SZTPtbWNhio044ve4YtcMgG7weBQ.cache +0 -0
  3324. data/test/dummy/tmp/cache/assets/sprockets/v3.0/OI/OI6uxGcnsKavdWTtwDAasU3wPx8QXhzBgV0X2n1KjMQ.cache +2 -0
  3325. data/test/dummy/tmp/cache/assets/sprockets/v3.0/OJ/OJ-HkuqltsSJCxx-8tpcC-FiBCZmv9rBbX7fuZ4WX3c.cache +1 -0
  3326. data/test/dummy/tmp/cache/assets/sprockets/v3.0/OZ/OZ9F4Fn_dkpmpk4sicuLrGPq94Zy5i4cEICTxazDQiM.cache +1 -0
  3327. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Ok/OkOeTZdk2a4PRV6TTe6iQmTCNsz6noXdic_LyrGxo54.cache +0 -0
  3328. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Ou/OutIkPpKkxD3wRqLNm2zXI-wO4g-julcsYL1l7-_St0.cache +1 -0
  3329. data/test/dummy/tmp/cache/assets/sprockets/v3.0/P-/P-uMDjmab3CJvPMicZRAEmVwFbx5Cpz59lCiKF5sJSQ.cache +0 -0
  3330. data/test/dummy/tmp/cache/assets/sprockets/v3.0/PD/PDKjknm7Lp3tOhYGWJGtGWxsKyOu7PBQ6DUYZIwiFlQ.cache +0 -0
  3331. data/test/dummy/tmp/cache/assets/sprockets/v3.0/PE/PEPTUn34FYC7qtT6o20MxM5vJFmIjRGzWmfnApeEyeQ.cache +1 -0
  3332. data/test/dummy/tmp/cache/assets/sprockets/v3.0/PH/PHeFcl3IySEgw--H0RAi5yiuGDcnYOe6hautLIJ6_AI.cache +1 -0
  3333. data/test/dummy/tmp/cache/assets/sprockets/v3.0/PM/PMaDdlCxsF0duQx9PXsbd9W4w3JqaaEJ9NQftk56oJ4.cache +0 -0
  3334. data/test/dummy/tmp/cache/assets/sprockets/v3.0/PP/PPAPLgd0P9iiyyfzDmv1emdi7iJLRXr3lJ8sop8yGRs.cache +0 -0
  3335. data/test/dummy/tmp/cache/assets/sprockets/v3.0/PY/PYWgBujissNvMn52QbBgqJRCu5ykHwaAFXw1Q5mw94c.cache +0 -0
  3336. data/test/dummy/tmp/cache/assets/sprockets/v3.0/PY/pYkRGi3TYLKKybvJi4Qt0k9vYz9xGcaEK-M6DVcO_XM.cache +2 -0
  3337. data/test/dummy/tmp/cache/assets/sprockets/v3.0/P_/P_bcKdvXTkjtolHDnKSctzc4vPkXbQ-2U6Ts47ipe_M.cache +1 -0
  3338. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Q3/Q3LkRJdkDFWdBEXOnz3Kc9I44OD073r7E_OSOUMehZE.cache +1 -0
  3339. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Q5/Q5eYn-q-Ovg05SG1d40zEuvG11p93QovN_qnACOhNao.cache +1 -0
  3340. data/test/dummy/tmp/cache/assets/sprockets/v3.0/QG/QGqG2LblvW7mlqtS8q4dAGuZ5MzUFEH1Ka6wc11h7IA.cache +0 -0
  3341. data/test/dummy/tmp/cache/assets/sprockets/v3.0/QH/QHx9syXUxYiIHdqnrBX6yTSVJ0MdgGPs9SOw-PUSmJs.cache +0 -0
  3342. data/test/dummy/tmp/cache/assets/sprockets/v3.0/QN/QNkun4elynBZosR08yXXd7yywfaUILDSvhZObgKMovM.cache +0 -0
  3343. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Qe/QEZVwUCw2NyZQNemKiJNXquljKrIcWcU_Zkk4Ty5J-w.cache +1 -0
  3344. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Qe/QezNo0Q-CRPun84wky4T4ox3Fmcrgtg2kW4zS9S780U.cache +0 -0
  3345. data/test/dummy/tmp/cache/assets/sprockets/v3.0/R5/R51VOgBJo6A6GHMGu7zCBEMwBY_KCzxmCaSZ9TlaLS4.cache +0 -0
  3346. data/test/dummy/tmp/cache/assets/sprockets/v3.0/RK/RKpcHuL8T36dTHvaRYcz92WKzwRefggeoIT3Co5cgW4.cache +1 -0
  3347. data/test/dummy/tmp/cache/assets/sprockets/v3.0/RN/RN1Ow9nhbtOZMRo2zt3wFqsYDDm-pYv4LCos2LtKW7k.cache +0 -0
  3348. data/test/dummy/tmp/cache/assets/sprockets/v3.0/R_/R_i2Ld_w8JrbcVCk9YhbhBO2CeBGfFO5OBY-xpbdXwc.cache +1 -0
  3349. data/test/dummy/tmp/cache/assets/sprockets/v3.0/S0/S0RGLIMG6wm8JNvhX5cw7mA9azhMY07GUzt0Yk_O46g.cache +2 -0
  3350. data/test/dummy/tmp/cache/assets/sprockets/v3.0/S0/S0bg-DifGaPJLIE5NtusFdj0_t-tATkODzfsycKcU-o.cache +1 -0
  3351. data/test/dummy/tmp/cache/assets/sprockets/v3.0/S1/S1bGk4BapFaKFjqrvhHApvy339329xsxN7cNGd9AzyE.cache +0 -0
  3352. data/test/dummy/tmp/cache/assets/sprockets/v3.0/SF/SFtd0L52GW2eu71V8R_iwna-RKL9fkPx9iKiUakZUDc.cache +1 -0
  3353. data/test/dummy/tmp/cache/assets/sprockets/v3.0/SN/SN-5LpYYznwZVm_o9ubXEoEcc2SRD4UjDOTf1TK_ZVA.cache +1 -0
  3354. data/test/dummy/tmp/cache/assets/sprockets/v3.0/SN/SndxWVL3X3Up-RYSqImm-aFDTuzcMjSuVVKKFdjsx5k.cache +1 -0
  3355. data/test/dummy/tmp/cache/assets/sprockets/v3.0/SS/SSxGuyXtofCd-RA6pewyTgthqE8LXohEuUPKRpdSwb4.cache +1 -0
  3356. data/test/dummy/tmp/cache/assets/sprockets/v3.0/ST/STGkF5PyQhYrxEUErTH-bs2C7jDd6uzju_cU_cvFr4I.cache +1 -0
  3357. data/test/dummy/tmp/cache/assets/sprockets/v3.0/SW/SWf122RiPWJi3VDRacLSUsK4D0K2UXp6sBhrtBwDlCc.cache +1 -0
  3358. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Sa/SaL8jF68aOQyAoAYqoM24lemb5nguYDZFDM0xbs5k2U.cache +1 -0
  3359. data/test/dummy/tmp/cache/assets/sprockets/v3.0/So/So_VS7nMFuWpFyohPE9Vv3A2FYFoeuJdTmrxGMBFVYY.cache +0 -0
  3360. data/test/dummy/tmp/cache/assets/sprockets/v3.0/T5/T51Sg_Sc0s0x2OFToJIEoUDP30bhe_DNLpq7UJIC4xo.cache +0 -0
  3361. data/test/dummy/tmp/cache/assets/sprockets/v3.0/T5/T5wUpoJ8hFZ5uI6zTN6hQ2sfyqVpjja0fZVB8cKKYpU.cache +0 -0
  3362. data/test/dummy/tmp/cache/assets/sprockets/v3.0/TF/TF6MtREARVRIytR7lhU7bWOnQGWIxvSJys45sofYrDc.cache +0 -0
  3363. data/test/dummy/tmp/cache/assets/sprockets/v3.0/TF/TFgbIU0duw_2XJiT_q0YuJP2WgQSdn0BBM3m3VmUkBc.cache +1 -0
  3364. data/test/dummy/tmp/cache/assets/sprockets/v3.0/TG/TGRPI4PYd30WRaI3mA61KMLdTYlj5EcviBrJtiKlBZw.cache +3 -0
  3365. data/test/dummy/tmp/cache/assets/sprockets/v3.0/TK/TKD5xCXEw9orA-YBFZQAW4TXdW9juaj98BcK28KJWzY.cache +0 -0
  3366. data/test/dummy/tmp/cache/assets/sprockets/v3.0/TP/TPBucG8hKSSSE8cHRVQKA-dqyTSmGCoSWzVPGFcCRkA.cache +0 -0
  3367. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Tu/TuaWHGR2msR5Wtn4upAK_k5hsRcbCp2k13q7h75Iy0M.cache +1 -0
  3368. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Tv/Tvy4wJFDb7ZXtyMHtSwaaqfiP3MW8Bjat5oKrlppzrc.cache +1 -0
  3369. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Tw/TwKDcNsegaJuPdFGen5kN8Xm13uf7wnIsMJjwvue31o.cache +1 -0
  3370. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Tz/Tzoo01-sHVQ6iwUwtOxjkUnNnTm0cbYoOfzuLkezk9s.cache +3 -0
  3371. data/test/dummy/tmp/cache/assets/sprockets/v3.0/U7/U792h345TiFRHFn-f2IAs1zEU7toLI3xmQYU4xCQ8oo.cache +1 -0
  3372. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Uc/Uc_s_6_qcqqlIWg1cC_efpwUsioD7buNpwI07_7mDno.cache +1 -0
  3373. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Ud/UdDPSWuIUMioWt-471SAAoHDZ42UFnS62tysN5J16sU.cache +1 -0
  3374. data/test/dummy/tmp/cache/assets/sprockets/v3.0/V9/V9Ek2UYe-izEF6yHQrWjpfnihFLJXULYempRverR7sQ.cache +0 -0
  3375. data/test/dummy/tmp/cache/assets/sprockets/v3.0/VL/VLrlgQb0WxKtfTTq3q1nxOe3l6jo7Zsn8EYErtAmizo.cache +2 -0
  3376. data/test/dummy/tmp/cache/assets/sprockets/v3.0/VU/VUuHhG2qoy-8YKuj8m6OhHbg60lj-fW3CmkJfpa9t3c.cache +1 -0
  3377. data/test/dummy/tmp/cache/assets/sprockets/v3.0/V_/V__2h4pXyXX4SOqwwhmWEv0k6vPFKbfU8ZGUmPfIhkA.cache +0 -0
  3378. data/test/dummy/tmp/cache/assets/sprockets/v3.0/W0/W0YS4Elgxjl9lFU269vMgtaZgaOfS-IQfMKelvj0hYM.cache +0 -0
  3379. data/test/dummy/tmp/cache/assets/sprockets/v3.0/W3/W3MMLW2J0Yv9-ovPbnsgrmRoVCdQ5o7Mh8W386soM40.cache +0 -0
  3380. data/test/dummy/tmp/cache/assets/sprockets/v3.0/WF/WFjd1S7RdIo6A2doPt0GhNrgRR6GdVsVI0qsYZGYkeA.cache +0 -0
  3381. data/test/dummy/tmp/cache/assets/sprockets/v3.0/WG/WGGHHWnfINo1yO4u6cN12T0LTfruIYcnlTROnAuePRI.cache +0 -0
  3382. data/test/dummy/tmp/cache/assets/sprockets/v3.0/WQ/WQr5Pobvwc4XYtzBgvGY89z5UG-oP_Q2Dq18yKI22WQ.cache +2 -0
  3383. data/test/dummy/tmp/cache/assets/sprockets/v3.0/WV/WV1rm4sggsDnnIbpMCXlCq2ajnsmkQg6t0JyAGR_P4o.cache +1 -0
  3384. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Wo/Woix1mgQIogle4CNJNm_yXESJc7saHrLdd51daLL_6o.cache +1 -0
  3385. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Wr/WrY56DIhKtPOMh--DdqMWy_-njRAa5CCGi973oDWTw4.cache +2 -0
  3386. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Ws/WsANYosboB-OvwzKCL3V07dyrHLlluySsxttXOHcLns.cache +1 -0
  3387. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Ws/WssjGnGmKXFdTZ1feGCRybogX4HQsj-SMPF5tUOlhZo.cache +2 -0
  3388. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Ws/wSk70L94fD2PxEIcuf62OVRIKBSCdJHU7dz2BneFr8A.cache +0 -0
  3389. data/test/dummy/tmp/cache/assets/sprockets/v3.0/X6/X6S5rmLYE90NZsY75M5Ms6rpztXjOrgeT1Ti4Z37MZk.cache +1 -0
  3390. data/test/dummy/tmp/cache/assets/sprockets/v3.0/XM/XMMvjOEaXLPKjezTUp7NxQS3jTqpqquN9NQkXP5DvWo.cache +0 -0
  3391. data/test/dummy/tmp/cache/assets/sprockets/v3.0/XX/XXPV3nQQZHrRIPHc4qmi-7k8HzEJLnlVeLHHbNW0S-k.cache +3 -0
  3392. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Xh/XhaZn_YgBRSLYrSsAh-n1jVNh11R5IjhLpNDJyT2M-M.cache +2 -0
  3393. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Y9/Y924y14WwoKsxIquX9f0HKddWzAoNhziO_A8WbTIv3M.cache +0 -0
  3394. data/test/dummy/tmp/cache/assets/sprockets/v3.0/YH/YHZKFWZJQnWvXG_ivJP2P6QqFcWC6VozpE1JPllFLOk.cache +0 -0
  3395. data/test/dummy/tmp/cache/assets/sprockets/v3.0/YQ/YQWOu1lXwP2TY-goLVUN0sz3qf_j41vn5veu6VRt8AY.cache +0 -0
  3396. data/test/dummy/tmp/cache/assets/sprockets/v3.0/YZ/YZ_gl8R4MYkf9WZ9w_Aq1mK0jOO0__UaCPsfi1vRBe4.cache +0 -0
  3397. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Yb/YbYVutSkfWc3P972AOBx1UzkK_yeamgmcubTnE3QJCE.cache +1 -0
  3398. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Yp/Ypng7LNs3B8tTgq-c0f_KPRrDXVuqNgAIVYSyy4zpEg.cache +0 -0
  3399. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Yp/ypnUlWI8rHrz9xhbacZtJdpNMuhZDhDoWrkbCdyYvE0.cache +1 -0
  3400. data/test/dummy/tmp/cache/assets/sprockets/v3.0/ZD/ZDBQssCAEWizVg1uSufXowo-0DuvcRS6dBPjqpBwKkA.cache +4 -0
  3401. data/test/dummy/tmp/cache/assets/sprockets/v3.0/ZD/ZDcx2xaNmkDRWS4FExS1QDrDYAniRJOvTqw1c4PGkHg.cache +0 -0
  3402. data/test/dummy/tmp/cache/assets/sprockets/v3.0/ZO/ZO0unurD3SUj_ZDOQUlIht4NiwOmz3AVLG0R7sLZWGE.cache +0 -0
  3403. data/test/dummy/tmp/cache/assets/sprockets/v3.0/ZO/ZoUcxIRe8FkoAqat4pmOLkgZpp_cCl1Qw5u-qj8HWDg.cache +1 -0
  3404. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Zc/Zc_Hah9n4Fx28yZK6zBiFWEteefUihJBCEdIKwxYc4c.cache +1 -0
  3405. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Zc/ZcrNRZi7nW-IdYLdZelDIFWxlDljxHafR_MZdO7ihIA.cache +0 -0
  3406. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Zj/Zjem8uDoD77fKdFE6aKib7FHI6e0MdnfmA5AbGe6ixU.cache +1 -0
  3407. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Zl/Zl8o57jqd6UdcZeaBt8002qicrUtDuymZbILpnyKrZg.cache +0 -0
  3408. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Zn/ZnJt2sIGlG6KUjVgF-aUiXGDuTb0ZH4FPONbdp_4Vus.cache +0 -0
  3409. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Zv/ZvKhCLx3SqxC-thPYp_UKlI9P1S_33UlwVRRQJew8o0.cache +3 -0
  3410. data/test/dummy/tmp/cache/assets/sprockets/v3.0/_7/_7WROBlfQ3yF6rQPfry301SbSBxkO-QFOioHHGwUXYI.cache +1 -0
  3411. data/test/dummy/tmp/cache/assets/sprockets/v3.0/_U/_UT9tybs6Hpco7rtRO17IgbgjAZPaLleRr2QLX8reCo.cache +0 -0
  3412. data/test/dummy/tmp/cache/assets/sprockets/v3.0/_V/_VZzv3ejKmXazQOJxxKSGp8L_KyQ4PGSgqCkfx8mztM.cache +0 -0
  3413. data/test/dummy/tmp/cache/assets/sprockets/v3.0/_Z/_Z4YsyCMRNEY7dK_WlzICfh_EU5jzubMhGQs6hYmiFY.cache +0 -0
  3414. data/test/dummy/tmp/cache/assets/sprockets/v3.0/_s/_sck-aTqhZK0V-zJLkNzqw3EOFBSrTaTsyvMZME_3Zk.cache +0 -0
  3415. data/test/dummy/tmp/cache/assets/sprockets/v3.0/aO/aONCNNCR1bNV24qMSN2GRl0UR4MkvBMA5hpcDy8PuV4.cache +3 -0
  3416. data/test/dummy/tmp/cache/assets/sprockets/v3.0/aO/aohUA4z0s2gWLMrgf65MY_7uVfYYrxI24LQnKxEd5hs.cache +1 -0
  3417. data/test/dummy/tmp/cache/assets/sprockets/v3.0/aQ/aQP-GU_ETdHgcYXdRE0X8-GYip-jZu9dB6zqudvkbI4.cache +0 -0
  3418. data/test/dummy/tmp/cache/assets/sprockets/v3.0/aQ/aq-XGCfWqKr6UTckC5n-y2KyMuELlvUDBexdJNM49wI.cache +3 -0
  3419. data/test/dummy/tmp/cache/assets/sprockets/v3.0/aS/aSJF0pI56dZEJRi_AB5GZIiGs3s5OI63dXtNLPVrEfU.cache +1 -0
  3420. data/test/dummy/tmp/cache/assets/sprockets/v3.0/aS/aSUEX9ap3lHCUqmA3rb3oqWdFsRi1t0fJXUAeQ__Cn4.cache +3 -0
  3421. data/test/dummy/tmp/cache/assets/sprockets/v3.0/aX/aXuCVF68wOYmxD3HLwhxVKCN4vN3cHU29LjQdH1K25c.cache +1 -0
  3422. data/test/dummy/tmp/cache/assets/sprockets/v3.0/aa/aAwe5Sgae7hhI-PYpS76GzSZImh3nLDfAkrOfaTB7ic.cache +1 -0
  3423. data/test/dummy/tmp/cache/assets/sprockets/v3.0/aa/aaZt122FaKgwOpDMv2B5Hl3KUJPdmFF0VG9MtXrHh0Y.cache +1 -0
  3424. data/test/dummy/tmp/cache/assets/sprockets/v3.0/al/al55mFvwqO7zEPUeZcfaVBwbMAQdz64mKckyg9ZvRrY.cache +0 -0
  3425. data/test/dummy/tmp/cache/assets/sprockets/v3.0/at/atzV1UZ60XKo904qdzu6rqElMPtPbaZrG_rzqmd0LCY.cache +2 -0
  3426. data/test/dummy/tmp/cache/assets/sprockets/v3.0/au/auepm3Kjmc8WhKXadYVCzA1xXavNhjDEyC2Kx19RheY.cache +0 -0
  3427. data/test/dummy/tmp/cache/assets/sprockets/v3.0/bH/bHUFywYLYTijrUhbAXwS0bN_zRukO1ghW1qZqILZhNA.cache +0 -0
  3428. data/test/dummy/tmp/cache/assets/sprockets/v3.0/bH/bHroilXWNs8s1kf5xmfPakBcIrKxK4rGBGkoTOBTX6E.cache +0 -0
  3429. data/test/dummy/tmp/cache/assets/sprockets/v3.0/ba/baZ25PdhYlUYx2YnW-e-nYj0Ifsim-j60p2xJD79uxo.cache +0 -0
  3430. data/test/dummy/tmp/cache/assets/sprockets/v3.0/be/beA9JgDUrQBc6diR95KBLI0yx2MXCBI793Yfuu7FL04.cache +1 -0
  3431. data/test/dummy/tmp/cache/assets/sprockets/v3.0/bm/bmTWnXJDAGGYXWQvYSsbXTMWs_QrpTS3DkinoII4Nbk.cache +3 -0
  3432. data/test/dummy/tmp/cache/assets/sprockets/v3.0/by/byj0qTKXP4iWKgbkqKdjFLgE6GGnBfjYBdq7JaMv4jk.cache +1 -0
  3433. data/test/dummy/tmp/cache/assets/sprockets/v3.0/cC/cCLer3p0GDzQVLY0TjjMOSJvuFDU10zkjYuVjPOLzOQ.cache +1 -0
  3434. data/test/dummy/tmp/cache/assets/sprockets/v3.0/cW/cWjcFG20fxR4HFihC6c5c4Z8MpteQ8p_DSMD-rcbBTA.cache +0 -0
  3435. data/test/dummy/tmp/cache/assets/sprockets/v3.0/cf/cfJh6WN92bdh_jiQpi1RWEfC7Sza9TN_dhUPoqPs04o.cache +1 -0
  3436. data/test/dummy/tmp/cache/assets/sprockets/v3.0/cu/cuqkhZVptH4h3ud3ucLgJcyLpX__UOJ4XkmvOghSj8E.cache +1 -0
  3437. data/test/dummy/tmp/cache/assets/sprockets/v3.0/cv/cvntW8Y00mNofhL6Udq5N7qyydfSBbJ0cjIvg4Z0sHM.cache +1 -0
  3438. data/test/dummy/tmp/cache/assets/sprockets/v3.0/d0/d0tN2Q_5vLN2cQnCLrAZ6XeeVEm9kU3bjEeDkK_gOrE.cache +0 -0
  3439. data/test/dummy/tmp/cache/assets/sprockets/v3.0/d6/d6b8dsDWZw_NJG34xap7F7DQbjfSjmSc20tCRZ7PiJQ.cache +1 -0
  3440. data/test/dummy/tmp/cache/assets/sprockets/v3.0/dT/dTTA7CYiIJTyREFFKGhSTD2knlQS1zB_Jx2m-LJUWbA.cache +1 -0
  3441. data/test/dummy/tmp/cache/assets/sprockets/v3.0/dX/DXGehXdT2t4UMwsmXeZwdiDjyyX3avYYtenuQiSupQ8.cache +0 -0
  3442. data/test/dummy/tmp/cache/assets/sprockets/v3.0/dX/dXYvFfVf4FjwbbOg00sTrexWA_VjQUHT8JFuG1HMO3A.cache +0 -0
  3443. data/test/dummy/tmp/cache/assets/sprockets/v3.0/db/db4YcpBE5Wh2ns0DMPP-9hs2ajduqUeVXFXF07JLyno.cache +0 -0
  3444. data/test/dummy/tmp/cache/assets/sprockets/v3.0/db/dbw4AJybYe7kqEC2NfcuAohrzEDeiiDwXhftu7lnBTc.cache +0 -0
  3445. data/test/dummy/tmp/cache/assets/sprockets/v3.0/dg/dgPNNmqP93ef0icK8q167hQ_8ZvKdVYPc13wzkFVcU0.cache +3 -0
  3446. data/test/dummy/tmp/cache/assets/sprockets/v3.0/dk/dkzci-jDRvIojpmTL8Y_WOwvpqEXNbhxboEQip4vDS4.cache +0 -0
  3447. data/test/dummy/tmp/cache/assets/sprockets/v3.0/dr/DrELwX3J_MKP_MUjUUCo0Jp3WPqE9MYVZXF6diL0kbc.cache +1 -0
  3448. data/test/dummy/tmp/cache/assets/sprockets/v3.0/dr/dRmdXEquXi_SD5sJneUggHtaJ0v5WJsCqh4UF6D-0P4.cache +0 -0
  3449. data/test/dummy/tmp/cache/assets/sprockets/v3.0/dr/dr7beOs-3HbFoLE5QftNDaSO_PsLhtomHFNE8mIp3dI.cache +0 -0
  3450. data/test/dummy/tmp/cache/assets/sprockets/v3.0/e1/e1y4p-cv1a-Lx_cgY9RZKRJqMyc_viNltJ6TbhUIL6o.cache +0 -0
  3451. data/test/dummy/tmp/cache/assets/sprockets/v3.0/e2/e295Ck7acg3jG4HDKRUWUIHNIng8um0Syp4RS7yrkc4.cache +1 -0
  3452. data/test/dummy/tmp/cache/assets/sprockets/v3.0/e3/e3STx0bZOAjjau_xeRV7sTAeO7-oAjQ2B-i1CFZvYUM.cache +0 -0
  3453. data/test/dummy/tmp/cache/assets/sprockets/v3.0/e6/e64KHR1RcxDUQROpa-WpU56TlNTFXuVytKnKP-EvdX4.cache +0 -0
  3454. data/test/dummy/tmp/cache/assets/sprockets/v3.0/eH/eHVM2ehhfjoc4O0s6iYEjdxH5dASwNwK99z5h_RNdaY.cache +0 -0
  3455. data/test/dummy/tmp/cache/assets/sprockets/v3.0/eH/ehJ-Ym9tzQqtW6jD83AyzGi8njHr1VKVf4tdChdMggc.cache +1 -0
  3456. data/test/dummy/tmp/cache/assets/sprockets/v3.0/eQ/eQEy6WrX3Iw5y559_sYPe0fu19q-kbzYNgsByoIasgc.cache +1 -0
  3457. data/test/dummy/tmp/cache/assets/sprockets/v3.0/ee/ee_SWe7IrNMaQG4ow9QCoZt3dt0ym0Fs3VE0hwx41Iw.cache +0 -0
  3458. data/test/dummy/tmp/cache/assets/sprockets/v3.0/ef/EfItbZ0Pw6_nuoKamS2_2lOUcCFSltmZk5SrhrMosSE.cache +3 -0
  3459. data/test/dummy/tmp/cache/assets/sprockets/v3.0/ef/efhGbGmF9w6ipvokRHX1o2CuLWyk0woT6aYF6mEgnWU.cache +3 -0
  3460. data/test/dummy/tmp/cache/assets/sprockets/v3.0/ei/eiCxLVy6EGmscJRkj8dTrkTTAqd0AyiFILHSeqlcNlM.cache +1 -0
  3461. data/test/dummy/tmp/cache/assets/sprockets/v3.0/el/eLq_wf7aFVBJTzTg2lP5vxERLhIHW-3xyCJWviNz1pY.cache +1 -0
  3462. data/test/dummy/tmp/cache/assets/sprockets/v3.0/el/elnswnDmNlOBpwXse6XkBfEg6-YiPaOuNdPpxWMVQA0.cache +0 -0
  3463. data/test/dummy/tmp/cache/assets/sprockets/v3.0/er/erxr0jXVT4cbCZyUA_ZumwEz0iRsQUXe89JwXp6kkqI.cache +0 -0
  3464. data/test/dummy/tmp/cache/assets/sprockets/v3.0/ew/ewLm6W57EgbaXFSXR-Da-cF8dJENVKovsjif8ZhtKaA.cache +1 -0
  3465. data/test/dummy/tmp/cache/assets/sprockets/v3.0/f6/f6zhGJc0sMjfUM5yDXE-YDAz1vYUQfx7JBoi5kMEYo8.cache +1 -0
  3466. data/test/dummy/tmp/cache/assets/sprockets/v3.0/fR/fRrBrbwlFkOppQh4wbL0F_Quv9OTiOsXnoXtQzNdEzM.cache +3 -0
  3467. data/test/dummy/tmp/cache/assets/sprockets/v3.0/fb/FbqYmcrWJw1RQgb94KqzzbU1k46KFxDnWhb5XaJj5N4.cache +1 -0
  3468. data/test/dummy/tmp/cache/assets/sprockets/v3.0/fb/fbGln0oy9C0IRJDe2jZkBnA9rgIs1XumDPMmzZz3cTI.cache +1 -0
  3469. data/test/dummy/tmp/cache/assets/sprockets/v3.0/fe/fEnGCqi_2lto8yy12s6AXuKa6VfLqlAyHChuE2eKMb4.cache +2 -0
  3470. data/test/dummy/tmp/cache/assets/sprockets/v3.0/fe/feJvA_vvSFRk6_SHVzKCP1QUyG8-pW_QXy_Wl2xnLA8.cache +0 -0
  3471. data/test/dummy/tmp/cache/assets/sprockets/v3.0/fg/fgI4IsIK7jphXlCgxfJc0Vc_InNCIJ6_XLRk37aGYKY.cache +3 -0
  3472. data/test/dummy/tmp/cache/assets/sprockets/v3.0/fl/flmw6af8llp1f7rcQiZUqPgSzzVEyCYWJX6NFsIcaRM.cache +2 -0
  3473. data/test/dummy/tmp/cache/assets/sprockets/v3.0/fm/fM4IJ1h9QXpYAUD6rudBde5gyij8TJb8Njui0B3fnGA.cache +0 -0
  3474. data/test/dummy/tmp/cache/assets/sprockets/v3.0/fm/fmUkJcDIXEK6DfFM-roMQDr1ViY53DbC9718aaSB_pE.cache +0 -0
  3475. data/test/dummy/tmp/cache/assets/sprockets/v3.0/fz/FzTw8I1j3e--lkAcMW4OBaPXgfWlmTk_k_EfKwg1rnE.cache +3 -0
  3476. data/test/dummy/tmp/cache/assets/sprockets/v3.0/fz/fzUvodF1tp2vUSOwkYW7juXo3Qzxlf5lTXz1g97BQSE.cache +1 -0
  3477. data/test/dummy/tmp/cache/assets/sprockets/v3.0/gA/gApQ_-c15uXxxr3Jli8Qkfvd0Xc8eY75Hz99UMxuVvg.cache +0 -0
  3478. data/test/dummy/tmp/cache/assets/sprockets/v3.0/gD/GdQxPcwOKZjEse0NHBMc71Sx__28oJG8W-Fxqgnj-QU.cache +1 -0
  3479. data/test/dummy/tmp/cache/assets/sprockets/v3.0/gD/gDSi0hdXbX1L7XBo2xc_bh6etmtNJ5DKJS1quaTwZhU.cache +1 -0
  3480. data/test/dummy/tmp/cache/assets/sprockets/v3.0/g_/G_-7DbwRG6ll00YQ9Bob9D1KqB-trbm1qYrwh3HBfPI.cache +0 -0
  3481. data/test/dummy/tmp/cache/assets/sprockets/v3.0/g_/g_qg3ioC8DEMDCTnRPu-AGj0Yw9OWg90bYIA99fbdvc.cache +1 -0
  3482. data/test/dummy/tmp/cache/assets/sprockets/v3.0/gf/gfzB3yaVwtYRgINw46qTZzuQ1JvkUKUC72So_DXZD3E.cache +3 -0
  3483. data/test/dummy/tmp/cache/assets/sprockets/v3.0/gk/gkRWndt3Rm8JqFXI_yn-uis1hVYWBRwspZHEGpQqTgQ.cache +0 -0
  3484. data/test/dummy/tmp/cache/assets/sprockets/v3.0/gs/gsUaQmgxMawyhatxXd2M8u3cy4jEYH0UxdCt39Jmf-A.cache +1 -0
  3485. data/test/dummy/tmp/cache/assets/sprockets/v3.0/h3/h3o1jxDwz9XQkibpBEXbv8p-CLhRUGdjX0pkzs949jU.cache +2 -0
  3486. data/test/dummy/tmp/cache/assets/sprockets/v3.0/hE/hEjK_kGQAVumyEbPH_W3t8e2dZK6eH0NLhMclQRHYKQ.cache +1 -0
  3487. data/test/dummy/tmp/cache/assets/sprockets/v3.0/hK/hKiob_aaDCeq42gID6k1lsm_tN6WnMTet2ajx5mlucE.cache +3 -0
  3488. data/test/dummy/tmp/cache/assets/sprockets/v3.0/hl/hlRXrbD6O6nStPP7LbCthjuHIeqwmMbgDu6aow3QhfA.cache +1 -0
  3489. data/test/dummy/tmp/cache/assets/sprockets/v3.0/iR/iRH8YAHi8WLWXxTKAk6ZgUaYbbWyEn57N0hv2rZu1G8.cache +1 -0
  3490. data/test/dummy/tmp/cache/assets/sprockets/v3.0/is/isUxH2UIZBWBHlWWr3z9MRjg-V87-4waXouJeJB76FE.cache +1 -0
  3491. data/test/dummy/tmp/cache/assets/sprockets/v3.0/iw/iw4bQvjGlFVYxx9mVCUhPOzzTSc_kgI7Qq8Tm4WKjOY.cache +1 -0
  3492. data/test/dummy/tmp/cache/assets/sprockets/v3.0/iz/izJ85S3OquJiEu2kWgJpqVTxwpj6zOBk4iFsOWXlvd8.cache +1 -0
  3493. data/test/dummy/tmp/cache/assets/sprockets/v3.0/j-/j-MmVjGOTXNzKcKAAl5V9ggEURu4tOYi1FY3x-Nxqk8.cache +0 -0
  3494. data/test/dummy/tmp/cache/assets/sprockets/v3.0/jT/jTNla-6sNf2mswscn2c9zCAjCt7JCnopvEqkf5FXiOg.cache +1 -0
  3495. data/test/dummy/tmp/cache/assets/sprockets/v3.0/jY/JyWbTn50j6iCHzzSg-zym0JlStMCN0S5sFt3dU0xqVI.cache +2 -0
  3496. data/test/dummy/tmp/cache/assets/sprockets/v3.0/jY/jYyoLaMxtWOSOrWBG7HnXyeCdXFkgZnldegMVD77POM.cache +1 -0
  3497. data/test/dummy/tmp/cache/assets/sprockets/v3.0/jd/jdcTlfZvcYACKLlrPK7fz51yIS6rAgd2n2m_RGbQO3E.cache +1 -0
  3498. data/test/dummy/tmp/cache/assets/sprockets/v3.0/k9/k9PuIpfeQ2wXPeGhCx2jhiO0K9Fxp4DsHy8ZKYs_zsw.cache +3 -0
  3499. data/test/dummy/tmp/cache/assets/sprockets/v3.0/kB/kB8sX636tYOo5lpVcMdjEM8o4YOGQbf-5sb8hDE730M.cache +0 -0
  3500. data/test/dummy/tmp/cache/assets/sprockets/v3.0/kH/kH5Lv090Y2O44XV3fFNu0Uc5Yn6HC7-o6Pw-o74IqHY.cache +0 -0
  3501. data/test/dummy/tmp/cache/assets/sprockets/v3.0/kg/kgs-ocmuDkDL2eL5k1oJzQCk1N-FKJCZt_52h55WQgc.cache +3 -0
  3502. data/test/dummy/tmp/cache/assets/sprockets/v3.0/kl/kl-lxMCTcAVUxiUbnAAZlj1pZ7u9Ya4sUJe3cSq12A0.cache +0 -0
  3503. data/test/dummy/tmp/cache/assets/sprockets/v3.0/ko/koi2dDnWC-0VJ97R4AzbKoQGiz9iWUsjgfBjr2eqJ00.cache +3 -0
  3504. data/test/dummy/tmp/cache/assets/sprockets/v3.0/ku/ku1Yso9P86-8lDkjp8MHSejYjGaMFfhQ6yGTaRoTDSE.cache +1 -0
  3505. data/test/dummy/tmp/cache/assets/sprockets/v3.0/lA/lAxtIuaTmCik6VwTB1jUwptd5Ghrp1mkspOxjO7S4W8.cache +2 -0
  3506. data/test/dummy/tmp/cache/assets/sprockets/v3.0/lB/lB7X36nvuOw9Z_heR4bbey2L_bDlscizN4QPYVpN6os.cache +0 -0
  3507. data/test/dummy/tmp/cache/assets/sprockets/v3.0/lB/lBpnzIGGndGgjKkXw4G4qOcvhf7X-MkzjdYmr_oQryc.cache +2 -0
  3508. data/test/dummy/tmp/cache/assets/sprockets/v3.0/lP/lPq-xEK4rd8s8g1uX6ZGAwt7x9lZL2aRVYrXZBMSmiU.cache +0 -0
  3509. data/test/dummy/tmp/cache/assets/sprockets/v3.0/lQ/lQXxX5KjSEUuAmeJZUeYnTcaO3b9KqmfjJb2TxgFATI.cache +0 -0
  3510. data/test/dummy/tmp/cache/assets/sprockets/v3.0/le/leFXW03lSIBOi5pesTyWZdhslcI7hQSO_6u2_8Iqtrg.cache +0 -0
  3511. data/test/dummy/tmp/cache/assets/sprockets/v3.0/lh/lhCn6ZyqPKz92iJqfHASCKrGIO1wPC1y_0mMDstng10.cache +1 -0
  3512. data/test/dummy/tmp/cache/assets/sprockets/v3.0/ly/lygmbgNNCj_aWEAQjkv10CT0cAhAm6yTnvUfTpxhbUs.cache +1 -0
  3513. data/test/dummy/tmp/cache/assets/sprockets/v3.0/mj/mjvh3pZFTj-NVE_aj-wz_g2bI3TQgk7GybzERrLKTHg.cache +0 -0
  3514. data/test/dummy/tmp/cache/assets/sprockets/v3.0/n7/n75T-Kq3M_QaXq3-NtPFvz3yZG6I3cvL8ouoJuJVn-c.cache +0 -0
  3515. data/test/dummy/tmp/cache/assets/sprockets/v3.0/nC/nCNLPlvJB7jDwkrRLQ63g27_o5cDLKZLJH-bZCwgkYM.cache +0 -0
  3516. data/test/dummy/tmp/cache/assets/sprockets/v3.0/nE/NehmVui9FO0isJHZ48s2vJMQMy_xVZcG_DJOaqmHU_A.cache +0 -0
  3517. data/test/dummy/tmp/cache/assets/sprockets/v3.0/nE/nEyTMFsF2RJ0tv3J0vzgiMYAqDBXoCKJofRQTRShzWQ.cache +0 -0
  3518. data/test/dummy/tmp/cache/assets/sprockets/v3.0/nF/nFFWO1fDV7ti-6wPgK-0vm40CoBJ9saoCmteZHcn_hk.cache +1 -0
  3519. data/test/dummy/tmp/cache/assets/sprockets/v3.0/nG/nGHvZfr0z7Mz0T5CZIQNfdwI3ZnmlzKu8Ft4ys7WoSY.cache +1 -0
  3520. data/test/dummy/tmp/cache/assets/sprockets/v3.0/nR/NrcW1bJHvYjmUGoCXkIfBsL0JETYtHjCOXNVex4R8_o.cache +0 -0
  3521. data/test/dummy/tmp/cache/assets/sprockets/v3.0/nR/nRdZ3EJsEI7D5K7vIBlJJF-Q57foTcPCs_l8iYefzbc.cache +0 -0
  3522. data/test/dummy/tmp/cache/assets/sprockets/v3.0/nV/NvbES3cJ_dJARIjs20pKMK_Z2T2f6AKamVNe-bgvndA.cache +0 -0
  3523. data/test/dummy/tmp/cache/assets/sprockets/v3.0/nV/nV0VoQLvcQVijSGacF4Xdap5h95FihT83e2YVGnjJLk.cache +0 -0
  3524. data/test/dummy/tmp/cache/assets/sprockets/v3.0/nW/nWrINm6pFycFp4hE1KI5hkaiC4m7qjQIeybGGh9wGtQ.cache +1 -0
  3525. data/test/dummy/tmp/cache/assets/sprockets/v3.0/ni/ni_Py3PIev7L6UM11VSnj0xP_jrG72YHQ3_cAdBAC04.cache +1 -0
  3526. data/test/dummy/tmp/cache/assets/sprockets/v3.0/ni/niimH9ndlwF1AOW5mYbH5xraiP2dARmlKbzW4P-AfE0.cache +1 -0
  3527. data/test/dummy/tmp/cache/assets/sprockets/v3.0/nn/nnlHfKHzwUqtUx95SoDDU_i-_e89r4Rh7r08b4bhdaM.cache +0 -0
  3528. data/test/dummy/tmp/cache/assets/sprockets/v3.0/o-/o-jfGLCay0qt9fsBqGHqJTToCHEENwzAlvGRGebkiXk.cache +2 -0
  3529. data/test/dummy/tmp/cache/assets/sprockets/v3.0/oC/oCySG5OQCO7TqPGf-v6gelSeM2A1Ss_oqL0v4LGB3iQ.cache +1 -0
  3530. data/test/dummy/tmp/cache/assets/sprockets/v3.0/oN/oN-bi8aNAicSNiGe6xVrje1YMxodYYtIMILPtKG7nGA.cache +1 -0
  3531. data/test/dummy/tmp/cache/assets/sprockets/v3.0/oY/oY1tLbYs5lrkTLX2zD63RqpVNPppM6xaO1uiMqBnrCI.cache +0 -0
  3532. data/test/dummy/tmp/cache/assets/sprockets/v3.0/oa/oaXGI8dKNfp2fUGX_dUDg6LwOt6V5_rbHR5wKLYW2rE.cache +0 -0
  3533. data/test/dummy/tmp/cache/assets/sprockets/v3.0/p9/p9BMLw1KBaNioPMiGt3P6wKNRnQVQgLCgaVCkxwahbY.cache +0 -0
  3534. data/test/dummy/tmp/cache/assets/sprockets/v3.0/pA/pA92DvpT3glqXiQnu9WuJibkTgmSELjpt5sQrWNXscw.cache +0 -0
  3535. data/test/dummy/tmp/cache/assets/sprockets/v3.0/pI/pIsijMRXLot6S3Yzo-JSW5OHYrLBOrKdHzdpDB4cFR8.cache +0 -0
  3536. data/test/dummy/tmp/cache/assets/sprockets/v3.0/pL/pLbQWNaqOo_NUMAZ-MNmS0DCKaZlKCFsmmXC_W2XHGE.cache +0 -0
  3537. data/test/dummy/tmp/cache/assets/sprockets/v3.0/pL/pLdVfOyUFd0t_vvRkQO-ZwfzNWSrTT1PGNcdyqQk5ek.cache +5 -0
  3538. data/test/dummy/tmp/cache/assets/sprockets/v3.0/pg/PGDhiWVorbdjEp8J1DxHzBAHf_c5VG6H9g0ItNYS7YY.cache +0 -0
  3539. data/test/dummy/tmp/cache/assets/sprockets/v3.0/pg/pGBKGds6wHxupjeOQ5l_WvmgpuwwsB06hxBZb4Gw8wk.cache +1 -0
  3540. data/test/dummy/tmp/cache/assets/sprockets/v3.0/pg/pgfDf_-TkPOZog_RVT4dz78cSVY_wwdtana0sHMbnoo.cache +1 -0
  3541. data/test/dummy/tmp/cache/assets/sprockets/v3.0/pz/pzE061xI9wqSTG6fATiIixmfzVULBbF1icL8mmFisdo.cache +0 -0
  3542. data/test/dummy/tmp/cache/assets/sprockets/v3.0/pz/pzejJrxprVOspRAxCnj8C8JSWQzYJvCOPkmf7_xGnj0.cache +0 -0
  3543. data/test/dummy/tmp/cache/assets/sprockets/v3.0/qO/qO4SAoWSefQpJXdO1KHNAkZZ_2T7ILVHdt295-gfjxQ.cache +1 -0
  3544. data/test/dummy/tmp/cache/assets/sprockets/v3.0/qS/qSmec69EI8o5z2UrI2TI3-qcmROxJxfq0W2SRQ9LSJM.cache +0 -0
  3545. data/test/dummy/tmp/cache/assets/sprockets/v3.0/qY/qYpHEL6B91iO_oEM6HlOizaHkYwTbddBwvXp3ctIGuA.cache +0 -0
  3546. data/test/dummy/tmp/cache/assets/sprockets/v3.0/qa/qAs8GAnPpPmzOZYg_CNsuED7StnWvVgidY6B1uPU0MI.cache +0 -0
  3547. data/test/dummy/tmp/cache/assets/sprockets/v3.0/qa/qa4BvR923yVA79yzH0FhzHf6dt2ie1Skw5vt72UnW6Y.cache +1 -0
  3548. data/test/dummy/tmp/cache/assets/sprockets/v3.0/qa/qaVGGKmDfzwcSPpE1igq3sZ0a9qgwPIIpKo5tugtb8o.cache +0 -0
  3549. data/test/dummy/tmp/cache/assets/sprockets/v3.0/ql/qlyVQqDufiP_KgvU9jIkRfFPKiQMsNJfVtK_3kOD0eE.cache +0 -0
  3550. data/test/dummy/tmp/cache/assets/sprockets/v3.0/qr/qrKu3GI1Wf36FtR8YC29HMGxz2KCFhMomupyZS4FqN4.cache +2 -0
  3551. data/test/dummy/tmp/cache/assets/sprockets/v3.0/qt/qt1WqB1zddv2xCXlo-WsWQhpi9mMCcAN2kMifi1dcx0.cache +1 -0
  3552. data/test/dummy/tmp/cache/assets/sprockets/v3.0/r3/r3F9agz7Y1OiXOU92s-OhZwySDtZvSerK4t04A78FoI.cache +2 -0
  3553. data/test/dummy/tmp/cache/assets/sprockets/v3.0/rL/rL3kRaw7iWAdWvCi52Zwj7egnrrZmPOvgu3xHZWPF5U.cache +0 -0
  3554. data/test/dummy/tmp/cache/assets/sprockets/v3.0/rS/rSbmxrGRIGUQvWNHF2G6iDZqdf32M-Oe7_2E5ditv_s.cache +1 -0
  3555. data/test/dummy/tmp/cache/assets/sprockets/v3.0/rb/rbSMV-yHXwVXMhA-ouE868PrsJpT5OViRRiAa2huTbY.cache +0 -0
  3556. data/test/dummy/tmp/cache/assets/sprockets/v3.0/rj/rj0gbb-V-19OiVyz-gqvLsTkhbU6RkcV7nHHWODtiiU.cache +1 -0
  3557. data/test/dummy/tmp/cache/assets/sprockets/v3.0/ro/ro5D2H6LE7PSnjKMrA68-G3mcoGd-3lkCxM5C7xoMyI.cache +1 -0
  3558. data/test/dummy/tmp/cache/assets/sprockets/v3.0/s2/s2LkekRuIan0xOgtzavezK_3pdMeCxuT3PWp3pi67K0.cache +1 -0
  3559. data/test/dummy/tmp/cache/assets/sprockets/v3.0/s8/s881QRmA1UZkVFs-32XTC-3CBN03W_KVF-jilmglNTc.cache +0 -0
  3560. data/test/dummy/tmp/cache/assets/sprockets/v3.0/sU/sUNTPeqaG8wLV3Z3IfqAkWkx44pAeFg-cT1XabJSu1Y.cache +1 -0
  3561. data/test/dummy/tmp/cache/assets/sprockets/v3.0/sZ/sZ6GNC1ke-VUONHunrmHSdg_9ejeod1P_VIobTQ_kdw.cache +1 -0
  3562. data/test/dummy/tmp/cache/assets/sprockets/v3.0/sb/sbUWhMn88XIT_OktTRTpdbm19040wLGHGq_ZB_JuJmY.cache +0 -0
  3563. data/test/dummy/tmp/cache/assets/sprockets/v3.0/sq/sqmBs71Bupj_6Dx4gKye_Sce74mN7ojL5kFJ4ip8YDA.cache +0 -0
  3564. data/test/dummy/tmp/cache/assets/sprockets/v3.0/sr/srwL1CxgMyF8kyqef9RrLp4-OuMidx5bcJMjDGb71YU.cache +1 -0
  3565. data/test/dummy/tmp/cache/assets/sprockets/v3.0/t3/t37JK3DsvKjkwW0jyPVTFi6pQoTWs0dUBghqWLFRf9k.cache +3 -0
  3566. data/test/dummy/tmp/cache/assets/sprockets/v3.0/tC/tCDGzSLiLLn--GC7phwex8jKd_PMkWxfUAt9ecUUrfQ.cache +1 -0
  3567. data/test/dummy/tmp/cache/assets/sprockets/v3.0/tD/tDNIAiYml0Wlo55nJ237MDUghQ-WlnJAeaTmKmV2cbI.cache +1 -0
  3568. data/test/dummy/tmp/cache/assets/sprockets/v3.0/tI/tItfoidrYlqYmjIxrZFBrtFT7bVrI7Hm7gw7E0hNRTE.cache +1 -0
  3569. data/test/dummy/tmp/cache/assets/sprockets/v3.0/tO/tO4t57EYiRD9uEis5sa4zb8ibZwY4ypwp01bOJsLOPI.cache +1 -0
  3570. data/test/dummy/tmp/cache/assets/sprockets/v3.0/tj/tjMb6r4R1iPVfoa_Ry7dSGAZNpMqkDKagP6gu5_t9rc.cache +1 -0
  3571. data/test/dummy/tmp/cache/assets/sprockets/v3.0/tr/trEUkFwShGrD29LZvGrv87ZhR0mVFBwmmfGWE3FKmTA.cache +1 -0
  3572. data/test/dummy/tmp/cache/assets/sprockets/v3.0/u1/u1-XKz6tLFI5dOUFGJ_mC-7egRDno7Qux3EooE7t-To.cache +1 -0
  3573. data/test/dummy/tmp/cache/assets/sprockets/v3.0/uA/uATCjb1_FfEioLe5mx9-IW1efKXy45vJRwkRLUIPVT4.cache +0 -0
  3574. data/test/dummy/tmp/cache/assets/sprockets/v3.0/uM/uMZgNsOBlr3PjcA0XUMP-iNDNMZdPBeXFKQ4coxkZmw.cache +1 -0
  3575. data/test/dummy/tmp/cache/assets/sprockets/v3.0/uN/uNiMrTes2UeqeNn_kICugU9g7UilHdAMp0ik0Wb6Wgg.cache +0 -0
  3576. data/test/dummy/tmp/cache/assets/sprockets/v3.0/uY/UY3W51c5mbv2RCPiqzAs6fmRQRH2h4nzedMC6EsE_c8.cache +0 -0
  3577. data/test/dummy/tmp/cache/assets/sprockets/v3.0/uY/uYiDKhB6lqfl6dtheWyPtR3iBP-Vv-HNoonkpM5uRuk.cache +1 -0
  3578. data/test/dummy/tmp/cache/assets/sprockets/v3.0/uf/ufAPNMDNJ_WsS7138dqXG1vyNDYO7h7cg9_hqZxqkJ0.cache +1 -0
  3579. data/test/dummy/tmp/cache/assets/sprockets/v3.0/us/usZ3GVEQL_DqhnOjdI_KvW2GbUIxSpAAfOk9Xc8b3u8.cache +1 -0
  3580. data/test/dummy/tmp/cache/assets/sprockets/v3.0/uu/UUnEysOSHt6SY6L-sAWvZMdsUZXLXFK_KBPYIXUYEK0.cache +3 -0
  3581. data/test/dummy/tmp/cache/assets/sprockets/v3.0/uu/uujGq-pv-e9CLT4kRNQGFGV1DeNHdurQPuGMSS_m-d0.cache +1 -0
  3582. data/test/dummy/tmp/cache/assets/sprockets/v3.0/uz/uz-uBhlLC9uZg5cfoyoiu81m2icxqG3-_iB9I7AgYtQ.cache +1 -0
  3583. data/test/dummy/tmp/cache/assets/sprockets/v3.0/v1/v1OzTR3MSs5ah8QAV11RoCt8pHTd0azUXrM2UcZmqgw.cache +0 -0
  3584. data/test/dummy/tmp/cache/assets/sprockets/v3.0/v5/v58891WOqag2338ZeGUicTI1VNPejI6vN7e6e40MQso.cache +0 -0
  3585. data/test/dummy/tmp/cache/assets/sprockets/v3.0/vD/vDRgzVrroRxz_6HoTY9LGaWicqQKysbsFnZYZhDCqao.cache +0 -0
  3586. data/test/dummy/tmp/cache/assets/sprockets/v3.0/vI/VI-1zzzpSvPR_3BEsH4KYZwgh0TSnLOPUz9DhFpaqTM.cache +0 -0
  3587. data/test/dummy/tmp/cache/assets/sprockets/v3.0/vI/vIQpL8Avmf8_4QsDuYpEU2PBPyt-Ohe504l_JLu2jpI.cache +0 -0
  3588. data/test/dummy/tmp/cache/assets/sprockets/v3.0/vK/vKEWn43T-18C8c7cpy6JW1-NyjP8G6dz7HZojjbhXRs.cache +1 -0
  3589. data/test/dummy/tmp/cache/assets/sprockets/v3.0/vN/vNohlZ7lhcjL2Vyb-D8s3Wp0Pqcy-N8lSI8J3B68V3E.cache +1 -0
  3590. data/test/dummy/tmp/cache/assets/sprockets/v3.0/vO/vOUjHGk-GGeyA4Vez6VLk7VeSGfba_QmupED-x7GwEI.cache +1 -0
  3591. data/test/dummy/tmp/cache/assets/sprockets/v3.0/vW/vW6SI142a_flZRMxeLcA5Ac6IuQMHvvRBEyPWGzG_RE.cache +0 -0
  3592. data/test/dummy/tmp/cache/assets/sprockets/v3.0/vX/vXitgWIY_GKewP9CGYn_5mvdVyj9FI8w5tUz-cFL_d4.cache +1 -0
  3593. data/test/dummy/tmp/cache/assets/sprockets/v3.0/vY/vY0BTq7Bbuc25eRTbLTNJmmB9k03WfSbWbZj0-_Llyo.cache +0 -0
  3594. data/test/dummy/tmp/cache/assets/sprockets/v3.0/va/va-G4ijRzS8avWrN81AiWblOXBm09EARkkdi9LsNLA0.cache +0 -0
  3595. data/test/dummy/tmp/cache/assets/sprockets/v3.0/vf/vfQXBv7UMlYwY8HC9uyKw-OIRibE0Zmlb-gL6KbMenk.cache +3 -0
  3596. data/test/dummy/tmp/cache/assets/sprockets/v3.0/vq/vqT7pRkN9bRTiMLd5f3zhNTxu3FiLmK_7X_uLHALZXA.cache +1 -0
  3597. data/test/dummy/tmp/cache/assets/sprockets/v3.0/vv/vv2OXVDFYZ0ohNG6Z5xI6xvsz5bb7Q2Syk4R93k0Gns.cache +0 -0
  3598. data/test/dummy/tmp/cache/assets/sprockets/v3.0/vz/vzdzmF39Dt09bXYTE7TNF2ZHmaA-klXzPLQDGi45HCY.cache +1 -0
  3599. data/test/dummy/tmp/cache/assets/sprockets/v3.0/wC/WcdRg2wFBku-Qedvt7xiuup0zuN-mfTNtOjUe-BxRQw.cache +0 -0
  3600. data/test/dummy/tmp/cache/assets/sprockets/v3.0/wC/wCIn5ZFRs3y8rucat3K56VicDQyIanfd34Vkku1KKm0.cache +0 -0
  3601. data/test/dummy/tmp/cache/assets/sprockets/v3.0/wC/wCSQ5rBoxbZrwTr1iOUy3n9v5gBkNJRTb9i4WWabZe4.cache +1 -0
  3602. data/test/dummy/tmp/cache/assets/sprockets/v3.0/wH/wH8YLNj3LKvFHxpai0MIry7Hm03cRu7jQemGm51gBGc.cache +1 -0
  3603. data/test/dummy/tmp/cache/assets/sprockets/v3.0/wP/wPXXQm4Y6Q-1bKpvWtQJhBWhWEznJdfoxdkBPOPV_rI.cache +3 -0
  3604. data/test/dummy/tmp/cache/assets/sprockets/v3.0/xE/xEH9Lb4epcFYdaUlNAjYSmAB1dwShJyxjATZDCqvZEI.cache +0 -0
  3605. data/test/dummy/tmp/cache/assets/sprockets/v3.0/xa/xaGMwmoEOB8kGTADd9cejNK-fZAyNxlREuJaHayYwcs.cache +3 -0
  3606. data/test/dummy/tmp/cache/assets/sprockets/v3.0/xc/xcg0w70_r-sdNhjNVnYGgLclc5vMtlsrI0MgUTP5yWo.cache +4 -0
  3607. data/test/dummy/tmp/cache/assets/sprockets/v3.0/xf/xfOsNLW4DJfcGXMaDrs5Ctw5zsGUdfHvzv82-waFkRc.cache +0 -0
  3608. data/test/dummy/tmp/cache/assets/sprockets/v3.0/xk/xkNqruDOTFkLwSXHpxErhZ99n0iJTzlvBmNl1QFObBc.cache +0 -0
  3609. data/test/dummy/tmp/cache/assets/sprockets/v3.0/y8/y8JclZ0fPfBnX31ebUrGVeZ7wE6yViPvmygFejbf60k.cache +0 -0
  3610. data/test/dummy/tmp/cache/assets/sprockets/v3.0/yC/yCmigDgdd3k5wmDb6eXl1KhGjc88V8iIGnf5oICTbk4.cache +1 -0
  3611. data/test/dummy/tmp/cache/assets/sprockets/v3.0/yW/YWwUy9Zejie0ilKiW1fjayXVvI7QqAghKXFQX81JG8o.cache +1 -0
  3612. data/test/dummy/tmp/cache/assets/sprockets/v3.0/yW/yWJxfRcywIcFD0_XnKZZi4pMwSqN0gt2koJ4d_5MjIo.cache +0 -0
  3613. data/test/dummy/tmp/cache/assets/sprockets/v3.0/yX/yXfVII9oehxHOETZNl1bFDxsuZTiwqhiDj2Zbw5DeYc.cache +0 -0
  3614. data/test/dummy/tmp/cache/assets/sprockets/v3.0/ym/YmJixu8_OkNPGUwpGcmYvxdgyhtgXPBxiHjnabxavCY.cache +1 -0
  3615. data/test/dummy/tmp/cache/assets/sprockets/v3.0/ym/ymDBfG9yvYPOooLIAHxnuINd5G27R6GAKpd8dxwPC30.cache +2 -0
  3616. data/test/dummy/tmp/cache/assets/sprockets/v3.0/z-/z-7oRW0-Fe_LX7mJy_A_BGFJk7alvYY73m6ftEATY00.cache +1 -0
  3617. data/test/dummy/tmp/cache/assets/sprockets/v3.0/zG/zG5tSBhDKEoi89Gwc0e4t1jv0gUBpx9cTRisQAYMg9I.cache +0 -0
  3618. data/test/dummy/tmp/cache/assets/sprockets/v3.0/zH/zHWiE-NqGzX4KRSXBiu8TWNJXYoVoO5Tn-RlWehgleA.cache +0 -0
  3619. data/test/dummy/tmp/cache/assets/sprockets/v3.0/zq/zq-4cRSBT3m-fL44nZFCq75E-e6uT-KqrjUUcFPL09I.cache +2 -0
  3620. data/test/dummy/tmp/cache/browserify-rails/browserifyinc-cache.json +1 -0
  3621. metadata +7208 -7
@@ -0,0 +1,3 @@
1
+ /* pako 0.2.9 nodeca/pako */
2
+ !function(t){if("object"==typeof exports&&"undefined"!=typeof module)module.exports=t();else if("function"==typeof define&&define.amd)define([],t);else{var e;e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:this,e.pako=t()}}(function(){return function t(e,a,i){function n(s,o){if(!a[s]){if(!e[s]){var l="function"==typeof require&&require;if(!o&&l)return l(s,!0);if(r)return r(s,!0);var h=new Error("Cannot find module '"+s+"'");throw h.code="MODULE_NOT_FOUND",h}var d=a[s]={exports:{}};e[s][0].call(d.exports,function(t){var a=e[s][1][t];return n(a?a:t)},d,d.exports,t,e,a,i)}return a[s].exports}for(var r="function"==typeof require&&require,s=0;s<i.length;s++)n(i[s]);return n}({1:[function(t,e,a){"use strict";function i(t){if(!(this instanceof i))return new i(t);this.options=l.assign({level:w,method:v,chunkSize:16384,windowBits:15,memLevel:8,strategy:p,to:""},t||{});var e=this.options;e.raw&&e.windowBits>0?e.windowBits=-e.windowBits:e.gzip&&e.windowBits>0&&e.windowBits<16&&(e.windowBits+=16),this.err=0,this.msg="",this.ended=!1,this.chunks=[],this.strm=new f,this.strm.avail_out=0;var a=o.deflateInit2(this.strm,e.level,e.method,e.windowBits,e.memLevel,e.strategy);if(a!==b)throw new Error(d[a]);if(e.header&&o.deflateSetHeader(this.strm,e.header),e.dictionary){var n;if(n="string"==typeof e.dictionary?h.string2buf(e.dictionary):"[object ArrayBuffer]"===_.call(e.dictionary)?new Uint8Array(e.dictionary):e.dictionary,a=o.deflateSetDictionary(this.strm,n),a!==b)throw new Error(d[a]);this._dict_set=!0}}function n(t,e){var a=new i(e);if(a.push(t,!0),a.err)throw a.msg;return a.result}function r(t,e){return e=e||{},e.raw=!0,n(t,e)}function s(t,e){return e=e||{},e.gzip=!0,n(t,e)}var o=t("./zlib/deflate"),l=t("./utils/common"),h=t("./utils/strings"),d=t("./zlib/messages"),f=t("./zlib/zstream"),_=Object.prototype.toString,u=0,c=4,b=0,g=1,m=2,w=-1,p=0,v=8;i.prototype.push=function(t,e){var a,i,n=this.strm,r=this.options.chunkSize;if(this.ended)return!1;i=e===~~e?e:e===!0?c:u,"string"==typeof t?n.input=h.string2buf(t):"[object ArrayBuffer]"===_.call(t)?n.input=new Uint8Array(t):n.input=t,n.next_in=0,n.avail_in=n.input.length;do{if(0===n.avail_out&&(n.output=new l.Buf8(r),n.next_out=0,n.avail_out=r),a=o.deflate(n,i),a!==g&&a!==b)return this.onEnd(a),this.ended=!0,!1;0!==n.avail_out&&(0!==n.avail_in||i!==c&&i!==m)||("string"===this.options.to?this.onData(h.buf2binstring(l.shrinkBuf(n.output,n.next_out))):this.onData(l.shrinkBuf(n.output,n.next_out)))}while((n.avail_in>0||0===n.avail_out)&&a!==g);return i===c?(a=o.deflateEnd(this.strm),this.onEnd(a),this.ended=!0,a===b):i!==m||(this.onEnd(b),n.avail_out=0,!0)},i.prototype.onData=function(t){this.chunks.push(t)},i.prototype.onEnd=function(t){t===b&&("string"===this.options.to?this.result=this.chunks.join(""):this.result=l.flattenChunks(this.chunks)),this.chunks=[],this.err=t,this.msg=this.strm.msg},a.Deflate=i,a.deflate=n,a.deflateRaw=r,a.gzip=s},{"./utils/common":3,"./utils/strings":4,"./zlib/deflate":8,"./zlib/messages":13,"./zlib/zstream":15}],2:[function(t,e,a){"use strict";function i(t){if(!(this instanceof i))return new i(t);this.options=o.assign({chunkSize:16384,windowBits:0,to:""},t||{});var e=this.options;e.raw&&e.windowBits>=0&&e.windowBits<16&&(e.windowBits=-e.windowBits,0===e.windowBits&&(e.windowBits=-15)),!(e.windowBits>=0&&e.windowBits<16)||t&&t.windowBits||(e.windowBits+=32),e.windowBits>15&&e.windowBits<48&&0===(15&e.windowBits)&&(e.windowBits|=15),this.err=0,this.msg="",this.ended=!1,this.chunks=[],this.strm=new f,this.strm.avail_out=0;var a=s.inflateInit2(this.strm,e.windowBits);if(a!==h.Z_OK)throw new Error(d[a]);this.header=new _,s.inflateGetHeader(this.strm,this.header)}function n(t,e){var a=new i(e);if(a.push(t,!0),a.err)throw a.msg;return a.result}function r(t,e){return e=e||{},e.raw=!0,n(t,e)}var s=t("./zlib/inflate"),o=t("./utils/common"),l=t("./utils/strings"),h=t("./zlib/constants"),d=t("./zlib/messages"),f=t("./zlib/zstream"),_=t("./zlib/gzheader"),u=Object.prototype.toString;i.prototype.push=function(t,e){var a,i,n,r,d,f,_=this.strm,c=this.options.chunkSize,b=this.options.dictionary,g=!1;if(this.ended)return!1;i=e===~~e?e:e===!0?h.Z_FINISH:h.Z_NO_FLUSH,"string"==typeof t?_.input=l.binstring2buf(t):"[object ArrayBuffer]"===u.call(t)?_.input=new Uint8Array(t):_.input=t,_.next_in=0,_.avail_in=_.input.length;do{if(0===_.avail_out&&(_.output=new o.Buf8(c),_.next_out=0,_.avail_out=c),a=s.inflate(_,h.Z_NO_FLUSH),a===h.Z_NEED_DICT&&b&&(f="string"==typeof b?l.string2buf(b):"[object ArrayBuffer]"===u.call(b)?new Uint8Array(b):b,a=s.inflateSetDictionary(this.strm,f)),a===h.Z_BUF_ERROR&&g===!0&&(a=h.Z_OK,g=!1),a!==h.Z_STREAM_END&&a!==h.Z_OK)return this.onEnd(a),this.ended=!0,!1;_.next_out&&(0!==_.avail_out&&a!==h.Z_STREAM_END&&(0!==_.avail_in||i!==h.Z_FINISH&&i!==h.Z_SYNC_FLUSH)||("string"===this.options.to?(n=l.utf8border(_.output,_.next_out),r=_.next_out-n,d=l.buf2string(_.output,n),_.next_out=r,_.avail_out=c-r,r&&o.arraySet(_.output,_.output,n,r,0),this.onData(d)):this.onData(o.shrinkBuf(_.output,_.next_out)))),0===_.avail_in&&0===_.avail_out&&(g=!0)}while((_.avail_in>0||0===_.avail_out)&&a!==h.Z_STREAM_END);return a===h.Z_STREAM_END&&(i=h.Z_FINISH),i===h.Z_FINISH?(a=s.inflateEnd(this.strm),this.onEnd(a),this.ended=!0,a===h.Z_OK):i!==h.Z_SYNC_FLUSH||(this.onEnd(h.Z_OK),_.avail_out=0,!0)},i.prototype.onData=function(t){this.chunks.push(t)},i.prototype.onEnd=function(t){t===h.Z_OK&&("string"===this.options.to?this.result=this.chunks.join(""):this.result=o.flattenChunks(this.chunks)),this.chunks=[],this.err=t,this.msg=this.strm.msg},a.Inflate=i,a.inflate=n,a.inflateRaw=r,a.ungzip=n},{"./utils/common":3,"./utils/strings":4,"./zlib/constants":6,"./zlib/gzheader":9,"./zlib/inflate":11,"./zlib/messages":13,"./zlib/zstream":15}],3:[function(t,e,a){"use strict";var i="undefined"!=typeof Uint8Array&&"undefined"!=typeof Uint16Array&&"undefined"!=typeof Int32Array;a.assign=function(t){for(var e=Array.prototype.slice.call(arguments,1);e.length;){var a=e.shift();if(a){if("object"!=typeof a)throw new TypeError(a+"must be non-object");for(var i in a)a.hasOwnProperty(i)&&(t[i]=a[i])}}return t},a.shrinkBuf=function(t,e){return t.length===e?t:t.subarray?t.subarray(0,e):(t.length=e,t)};var n={arraySet:function(t,e,a,i,n){if(e.subarray&&t.subarray)return void t.set(e.subarray(a,a+i),n);for(var r=0;r<i;r++)t[n+r]=e[a+r]},flattenChunks:function(t){var e,a,i,n,r,s;for(i=0,e=0,a=t.length;e<a;e++)i+=t[e].length;for(s=new Uint8Array(i),n=0,e=0,a=t.length;e<a;e++)r=t[e],s.set(r,n),n+=r.length;return s}},r={arraySet:function(t,e,a,i,n){for(var r=0;r<i;r++)t[n+r]=e[a+r]},flattenChunks:function(t){return[].concat.apply([],t)}};a.setTyped=function(t){t?(a.Buf8=Uint8Array,a.Buf16=Uint16Array,a.Buf32=Int32Array,a.assign(a,n)):(a.Buf8=Array,a.Buf16=Array,a.Buf32=Array,a.assign(a,r))},a.setTyped(i)},{}],4:[function(t,e,a){"use strict";function i(t,e){if(e<65537&&(t.subarray&&s||!t.subarray&&r))return String.fromCharCode.apply(null,n.shrinkBuf(t,e));for(var a="",i=0;i<e;i++)a+=String.fromCharCode(t[i]);return a}var n=t("./common"),r=!0,s=!0;try{String.fromCharCode.apply(null,[0])}catch(t){r=!1}try{String.fromCharCode.apply(null,new Uint8Array(1))}catch(t){s=!1}for(var o=new n.Buf8(256),l=0;l<256;l++)o[l]=l>=252?6:l>=248?5:l>=240?4:l>=224?3:l>=192?2:1;o[254]=o[254]=1,a.string2buf=function(t){var e,a,i,r,s,o=t.length,l=0;for(r=0;r<o;r++)a=t.charCodeAt(r),55296===(64512&a)&&r+1<o&&(i=t.charCodeAt(r+1),56320===(64512&i)&&(a=65536+(a-55296<<10)+(i-56320),r++)),l+=a<128?1:a<2048?2:a<65536?3:4;for(e=new n.Buf8(l),s=0,r=0;s<l;r++)a=t.charCodeAt(r),55296===(64512&a)&&r+1<o&&(i=t.charCodeAt(r+1),56320===(64512&i)&&(a=65536+(a-55296<<10)+(i-56320),r++)),a<128?e[s++]=a:a<2048?(e[s++]=192|a>>>6,e[s++]=128|63&a):a<65536?(e[s++]=224|a>>>12,e[s++]=128|a>>>6&63,e[s++]=128|63&a):(e[s++]=240|a>>>18,e[s++]=128|a>>>12&63,e[s++]=128|a>>>6&63,e[s++]=128|63&a);return e},a.buf2binstring=function(t){return i(t,t.length)},a.binstring2buf=function(t){for(var e=new n.Buf8(t.length),a=0,i=e.length;a<i;a++)e[a]=t.charCodeAt(a);return e},a.buf2string=function(t,e){var a,n,r,s,l=e||t.length,h=new Array(2*l);for(n=0,a=0;a<l;)if(r=t[a++],r<128)h[n++]=r;else if(s=o[r],s>4)h[n++]=65533,a+=s-1;else{for(r&=2===s?31:3===s?15:7;s>1&&a<l;)r=r<<6|63&t[a++],s--;s>1?h[n++]=65533:r<65536?h[n++]=r:(r-=65536,h[n++]=55296|r>>10&1023,h[n++]=56320|1023&r)}return i(h,n)},a.utf8border=function(t,e){var a;for(e=e||t.length,e>t.length&&(e=t.length),a=e-1;a>=0&&128===(192&t[a]);)a--;return a<0?e:0===a?e:a+o[t[a]]>e?a:e}},{"./common":3}],5:[function(t,e,a){"use strict";function i(t,e,a,i){for(var n=65535&t|0,r=t>>>16&65535|0,s=0;0!==a;){s=a>2e3?2e3:a,a-=s;do n=n+e[i++]|0,r=r+n|0;while(--s);n%=65521,r%=65521}return n|r<<16|0}e.exports=i},{}],6:[function(t,e,a){"use strict";e.exports={Z_NO_FLUSH:0,Z_PARTIAL_FLUSH:1,Z_SYNC_FLUSH:2,Z_FULL_FLUSH:3,Z_FINISH:4,Z_BLOCK:5,Z_TREES:6,Z_OK:0,Z_STREAM_END:1,Z_NEED_DICT:2,Z_ERRNO:-1,Z_STREAM_ERROR:-2,Z_DATA_ERROR:-3,Z_BUF_ERROR:-5,Z_NO_COMPRESSION:0,Z_BEST_SPEED:1,Z_BEST_COMPRESSION:9,Z_DEFAULT_COMPRESSION:-1,Z_FILTERED:1,Z_HUFFMAN_ONLY:2,Z_RLE:3,Z_FIXED:4,Z_DEFAULT_STRATEGY:0,Z_BINARY:0,Z_TEXT:1,Z_UNKNOWN:2,Z_DEFLATED:8}},{}],7:[function(t,e,a){"use strict";function i(){for(var t,e=[],a=0;a<256;a++){t=a;for(var i=0;i<8;i++)t=1&t?3988292384^t>>>1:t>>>1;e[a]=t}return e}function n(t,e,a,i){var n=r,s=i+a;t^=-1;for(var o=i;o<s;o++)t=t>>>8^n[255&(t^e[o])];return t^-1}var r=i();e.exports=n},{}],8:[function(t,e,a){"use strict";function i(t,e){return t.msg=D[e],e}function n(t){return(t<<1)-(t>4?9:0)}function r(t){for(var e=t.length;--e>=0;)t[e]=0}function s(t){var e=t.state,a=e.pending;a>t.avail_out&&(a=t.avail_out),0!==a&&(R.arraySet(t.output,e.pending_buf,e.pending_out,a,t.next_out),t.next_out+=a,e.pending_out+=a,t.total_out+=a,t.avail_out-=a,e.pending-=a,0===e.pending&&(e.pending_out=0))}function o(t,e){C._tr_flush_block(t,t.block_start>=0?t.block_start:-1,t.strstart-t.block_start,e),t.block_start=t.strstart,s(t.strm)}function l(t,e){t.pending_buf[t.pending++]=e}function h(t,e){t.pending_buf[t.pending++]=e>>>8&255,t.pending_buf[t.pending++]=255&e}function d(t,e,a,i){var n=t.avail_in;return n>i&&(n=i),0===n?0:(t.avail_in-=n,R.arraySet(e,t.input,t.next_in,n,a),1===t.state.wrap?t.adler=N(t.adler,e,n,a):2===t.state.wrap&&(t.adler=O(t.adler,e,n,a)),t.next_in+=n,t.total_in+=n,n)}function f(t,e){var a,i,n=t.max_chain_length,r=t.strstart,s=t.prev_length,o=t.nice_match,l=t.strstart>t.w_size-ft?t.strstart-(t.w_size-ft):0,h=t.window,d=t.w_mask,f=t.prev,_=t.strstart+dt,u=h[r+s-1],c=h[r+s];t.prev_length>=t.good_match&&(n>>=2),o>t.lookahead&&(o=t.lookahead);do if(a=e,h[a+s]===c&&h[a+s-1]===u&&h[a]===h[r]&&h[++a]===h[r+1]){r+=2,a++;do;while(h[++r]===h[++a]&&h[++r]===h[++a]&&h[++r]===h[++a]&&h[++r]===h[++a]&&h[++r]===h[++a]&&h[++r]===h[++a]&&h[++r]===h[++a]&&h[++r]===h[++a]&&r<_);if(i=dt-(_-r),r=_-dt,i>s){if(t.match_start=e,s=i,i>=o)break;u=h[r+s-1],c=h[r+s]}}while((e=f[e&d])>l&&0!==--n);return s<=t.lookahead?s:t.lookahead}function _(t){var e,a,i,n,r,s=t.w_size;do{if(n=t.window_size-t.lookahead-t.strstart,t.strstart>=s+(s-ft)){R.arraySet(t.window,t.window,s,s,0),t.match_start-=s,t.strstart-=s,t.block_start-=s,a=t.hash_size,e=a;do i=t.head[--e],t.head[e]=i>=s?i-s:0;while(--a);a=s,e=a;do i=t.prev[--e],t.prev[e]=i>=s?i-s:0;while(--a);n+=s}if(0===t.strm.avail_in)break;if(a=d(t.strm,t.window,t.strstart+t.lookahead,n),t.lookahead+=a,t.lookahead+t.insert>=ht)for(r=t.strstart-t.insert,t.ins_h=t.window[r],t.ins_h=(t.ins_h<<t.hash_shift^t.window[r+1])&t.hash_mask;t.insert&&(t.ins_h=(t.ins_h<<t.hash_shift^t.window[r+ht-1])&t.hash_mask,t.prev[r&t.w_mask]=t.head[t.ins_h],t.head[t.ins_h]=r,r++,t.insert--,!(t.lookahead+t.insert<ht)););}while(t.lookahead<ft&&0!==t.strm.avail_in)}function u(t,e){var a=65535;for(a>t.pending_buf_size-5&&(a=t.pending_buf_size-5);;){if(t.lookahead<=1){if(_(t),0===t.lookahead&&e===I)return vt;if(0===t.lookahead)break}t.strstart+=t.lookahead,t.lookahead=0;var i=t.block_start+a;if((0===t.strstart||t.strstart>=i)&&(t.lookahead=t.strstart-i,t.strstart=i,o(t,!1),0===t.strm.avail_out))return vt;if(t.strstart-t.block_start>=t.w_size-ft&&(o(t,!1),0===t.strm.avail_out))return vt}return t.insert=0,e===F?(o(t,!0),0===t.strm.avail_out?yt:xt):t.strstart>t.block_start&&(o(t,!1),0===t.strm.avail_out)?vt:vt}function c(t,e){for(var a,i;;){if(t.lookahead<ft){if(_(t),t.lookahead<ft&&e===I)return vt;if(0===t.lookahead)break}if(a=0,t.lookahead>=ht&&(t.ins_h=(t.ins_h<<t.hash_shift^t.window[t.strstart+ht-1])&t.hash_mask,a=t.prev[t.strstart&t.w_mask]=t.head[t.ins_h],t.head[t.ins_h]=t.strstart),0!==a&&t.strstart-a<=t.w_size-ft&&(t.match_length=f(t,a)),t.match_length>=ht)if(i=C._tr_tally(t,t.strstart-t.match_start,t.match_length-ht),t.lookahead-=t.match_length,t.match_length<=t.max_lazy_match&&t.lookahead>=ht){t.match_length--;do t.strstart++,t.ins_h=(t.ins_h<<t.hash_shift^t.window[t.strstart+ht-1])&t.hash_mask,a=t.prev[t.strstart&t.w_mask]=t.head[t.ins_h],t.head[t.ins_h]=t.strstart;while(0!==--t.match_length);t.strstart++}else t.strstart+=t.match_length,t.match_length=0,t.ins_h=t.window[t.strstart],t.ins_h=(t.ins_h<<t.hash_shift^t.window[t.strstart+1])&t.hash_mask;else i=C._tr_tally(t,0,t.window[t.strstart]),t.lookahead--,t.strstart++;if(i&&(o(t,!1),0===t.strm.avail_out))return vt}return t.insert=t.strstart<ht-1?t.strstart:ht-1,e===F?(o(t,!0),0===t.strm.avail_out?yt:xt):t.last_lit&&(o(t,!1),0===t.strm.avail_out)?vt:kt}function b(t,e){for(var a,i,n;;){if(t.lookahead<ft){if(_(t),t.lookahead<ft&&e===I)return vt;if(0===t.lookahead)break}if(a=0,t.lookahead>=ht&&(t.ins_h=(t.ins_h<<t.hash_shift^t.window[t.strstart+ht-1])&t.hash_mask,a=t.prev[t.strstart&t.w_mask]=t.head[t.ins_h],t.head[t.ins_h]=t.strstart),t.prev_length=t.match_length,t.prev_match=t.match_start,t.match_length=ht-1,0!==a&&t.prev_length<t.max_lazy_match&&t.strstart-a<=t.w_size-ft&&(t.match_length=f(t,a),t.match_length<=5&&(t.strategy===q||t.match_length===ht&&t.strstart-t.match_start>4096)&&(t.match_length=ht-1)),t.prev_length>=ht&&t.match_length<=t.prev_length){n=t.strstart+t.lookahead-ht,i=C._tr_tally(t,t.strstart-1-t.prev_match,t.prev_length-ht),t.lookahead-=t.prev_length-1,t.prev_length-=2;do++t.strstart<=n&&(t.ins_h=(t.ins_h<<t.hash_shift^t.window[t.strstart+ht-1])&t.hash_mask,a=t.prev[t.strstart&t.w_mask]=t.head[t.ins_h],t.head[t.ins_h]=t.strstart);while(0!==--t.prev_length);if(t.match_available=0,t.match_length=ht-1,t.strstart++,i&&(o(t,!1),0===t.strm.avail_out))return vt}else if(t.match_available){if(i=C._tr_tally(t,0,t.window[t.strstart-1]),i&&o(t,!1),t.strstart++,t.lookahead--,0===t.strm.avail_out)return vt}else t.match_available=1,t.strstart++,t.lookahead--}return t.match_available&&(i=C._tr_tally(t,0,t.window[t.strstart-1]),t.match_available=0),t.insert=t.strstart<ht-1?t.strstart:ht-1,e===F?(o(t,!0),0===t.strm.avail_out?yt:xt):t.last_lit&&(o(t,!1),0===t.strm.avail_out)?vt:kt}function g(t,e){for(var a,i,n,r,s=t.window;;){if(t.lookahead<=dt){if(_(t),t.lookahead<=dt&&e===I)return vt;if(0===t.lookahead)break}if(t.match_length=0,t.lookahead>=ht&&t.strstart>0&&(n=t.strstart-1,i=s[n],i===s[++n]&&i===s[++n]&&i===s[++n])){r=t.strstart+dt;do;while(i===s[++n]&&i===s[++n]&&i===s[++n]&&i===s[++n]&&i===s[++n]&&i===s[++n]&&i===s[++n]&&i===s[++n]&&n<r);t.match_length=dt-(r-n),t.match_length>t.lookahead&&(t.match_length=t.lookahead)}if(t.match_length>=ht?(a=C._tr_tally(t,1,t.match_length-ht),t.lookahead-=t.match_length,t.strstart+=t.match_length,t.match_length=0):(a=C._tr_tally(t,0,t.window[t.strstart]),t.lookahead--,t.strstart++),a&&(o(t,!1),0===t.strm.avail_out))return vt}return t.insert=0,e===F?(o(t,!0),0===t.strm.avail_out?yt:xt):t.last_lit&&(o(t,!1),0===t.strm.avail_out)?vt:kt}function m(t,e){for(var a;;){if(0===t.lookahead&&(_(t),0===t.lookahead)){if(e===I)return vt;break}if(t.match_length=0,a=C._tr_tally(t,0,t.window[t.strstart]),t.lookahead--,t.strstart++,a&&(o(t,!1),0===t.strm.avail_out))return vt}return t.insert=0,e===F?(o(t,!0),0===t.strm.avail_out?yt:xt):t.last_lit&&(o(t,!1),0===t.strm.avail_out)?vt:kt}function w(t,e,a,i,n){this.good_length=t,this.max_lazy=e,this.nice_length=a,this.max_chain=i,this.func=n}function p(t){t.window_size=2*t.w_size,r(t.head),t.max_lazy_match=Z[t.level].max_lazy,t.good_match=Z[t.level].good_length,t.nice_match=Z[t.level].nice_length,t.max_chain_length=Z[t.level].max_chain,t.strstart=0,t.block_start=0,t.lookahead=0,t.insert=0,t.match_length=t.prev_length=ht-1,t.match_available=0,t.ins_h=0}function v(){this.strm=null,this.status=0,this.pending_buf=null,this.pending_buf_size=0,this.pending_out=0,this.pending=0,this.wrap=0,this.gzhead=null,this.gzindex=0,this.method=V,this.last_flush=-1,this.w_size=0,this.w_bits=0,this.w_mask=0,this.window=null,this.window_size=0,this.prev=null,this.head=null,this.ins_h=0,this.hash_size=0,this.hash_bits=0,this.hash_mask=0,this.hash_shift=0,this.block_start=0,this.match_length=0,this.prev_match=0,this.match_available=0,this.strstart=0,this.match_start=0,this.lookahead=0,this.prev_length=0,this.max_chain_length=0,this.max_lazy_match=0,this.level=0,this.strategy=0,this.good_match=0,this.nice_match=0,this.dyn_ltree=new R.Buf16(2*ot),this.dyn_dtree=new R.Buf16(2*(2*rt+1)),this.bl_tree=new R.Buf16(2*(2*st+1)),r(this.dyn_ltree),r(this.dyn_dtree),r(this.bl_tree),this.l_desc=null,this.d_desc=null,this.bl_desc=null,this.bl_count=new R.Buf16(lt+1),this.heap=new R.Buf16(2*nt+1),r(this.heap),this.heap_len=0,this.heap_max=0,this.depth=new R.Buf16(2*nt+1),r(this.depth),this.l_buf=0,this.lit_bufsize=0,this.last_lit=0,this.d_buf=0,this.opt_len=0,this.static_len=0,this.matches=0,this.insert=0,this.bi_buf=0,this.bi_valid=0}function k(t){var e;return t&&t.state?(t.total_in=t.total_out=0,t.data_type=Q,e=t.state,e.pending=0,e.pending_out=0,e.wrap<0&&(e.wrap=-e.wrap),e.status=e.wrap?ut:wt,t.adler=2===e.wrap?0:1,e.last_flush=I,C._tr_init(e),H):i(t,K)}function y(t){var e=k(t);return e===H&&p(t.state),e}function x(t,e){return t&&t.state?2!==t.state.wrap?K:(t.state.gzhead=e,H):K}function z(t,e,a,n,r,s){if(!t)return K;var o=1;if(e===Y&&(e=6),n<0?(o=0,n=-n):n>15&&(o=2,n-=16),r<1||r>$||a!==V||n<8||n>15||e<0||e>9||s<0||s>W)return i(t,K);8===n&&(n=9);var l=new v;return t.state=l,l.strm=t,l.wrap=o,l.gzhead=null,l.w_bits=n,l.w_size=1<<l.w_bits,l.w_mask=l.w_size-1,l.hash_bits=r+7,l.hash_size=1<<l.hash_bits,l.hash_mask=l.hash_size-1,l.hash_shift=~~((l.hash_bits+ht-1)/ht),l.window=new R.Buf8(2*l.w_size),l.head=new R.Buf16(l.hash_size),l.prev=new R.Buf16(l.w_size),l.lit_bufsize=1<<r+6,l.pending_buf_size=4*l.lit_bufsize,l.pending_buf=new R.Buf8(l.pending_buf_size),l.d_buf=1*l.lit_bufsize,l.l_buf=3*l.lit_bufsize,l.level=e,l.strategy=s,l.method=a,y(t)}function B(t,e){return z(t,e,V,tt,et,J)}function S(t,e){var a,o,d,f;if(!t||!t.state||e>L||e<0)return t?i(t,K):K;if(o=t.state,!t.output||!t.input&&0!==t.avail_in||o.status===pt&&e!==F)return i(t,0===t.avail_out?P:K);if(o.strm=t,a=o.last_flush,o.last_flush=e,o.status===ut)if(2===o.wrap)t.adler=0,l(o,31),l(o,139),l(o,8),o.gzhead?(l(o,(o.gzhead.text?1:0)+(o.gzhead.hcrc?2:0)+(o.gzhead.extra?4:0)+(o.gzhead.name?8:0)+(o.gzhead.comment?16:0)),l(o,255&o.gzhead.time),l(o,o.gzhead.time>>8&255),l(o,o.gzhead.time>>16&255),l(o,o.gzhead.time>>24&255),l(o,9===o.level?2:o.strategy>=G||o.level<2?4:0),l(o,255&o.gzhead.os),o.gzhead.extra&&o.gzhead.extra.length&&(l(o,255&o.gzhead.extra.length),l(o,o.gzhead.extra.length>>8&255)),o.gzhead.hcrc&&(t.adler=O(t.adler,o.pending_buf,o.pending,0)),o.gzindex=0,o.status=ct):(l(o,0),l(o,0),l(o,0),l(o,0),l(o,0),l(o,9===o.level?2:o.strategy>=G||o.level<2?4:0),l(o,zt),o.status=wt);else{var _=V+(o.w_bits-8<<4)<<8,u=-1;u=o.strategy>=G||o.level<2?0:o.level<6?1:6===o.level?2:3,_|=u<<6,0!==o.strstart&&(_|=_t),_+=31-_%31,o.status=wt,h(o,_),0!==o.strstart&&(h(o,t.adler>>>16),h(o,65535&t.adler)),t.adler=1}if(o.status===ct)if(o.gzhead.extra){for(d=o.pending;o.gzindex<(65535&o.gzhead.extra.length)&&(o.pending!==o.pending_buf_size||(o.gzhead.hcrc&&o.pending>d&&(t.adler=O(t.adler,o.pending_buf,o.pending-d,d)),s(t),d=o.pending,o.pending!==o.pending_buf_size));)l(o,255&o.gzhead.extra[o.gzindex]),o.gzindex++;o.gzhead.hcrc&&o.pending>d&&(t.adler=O(t.adler,o.pending_buf,o.pending-d,d)),o.gzindex===o.gzhead.extra.length&&(o.gzindex=0,o.status=bt)}else o.status=bt;if(o.status===bt)if(o.gzhead.name){d=o.pending;do{if(o.pending===o.pending_buf_size&&(o.gzhead.hcrc&&o.pending>d&&(t.adler=O(t.adler,o.pending_buf,o.pending-d,d)),s(t),d=o.pending,o.pending===o.pending_buf_size)){f=1;break}f=o.gzindex<o.gzhead.name.length?255&o.gzhead.name.charCodeAt(o.gzindex++):0,l(o,f)}while(0!==f);o.gzhead.hcrc&&o.pending>d&&(t.adler=O(t.adler,o.pending_buf,o.pending-d,d)),0===f&&(o.gzindex=0,o.status=gt)}else o.status=gt;if(o.status===gt)if(o.gzhead.comment){d=o.pending;do{if(o.pending===o.pending_buf_size&&(o.gzhead.hcrc&&o.pending>d&&(t.adler=O(t.adler,o.pending_buf,o.pending-d,d)),s(t),d=o.pending,o.pending===o.pending_buf_size)){f=1;break}f=o.gzindex<o.gzhead.comment.length?255&o.gzhead.comment.charCodeAt(o.gzindex++):0,l(o,f)}while(0!==f);o.gzhead.hcrc&&o.pending>d&&(t.adler=O(t.adler,o.pending_buf,o.pending-d,d)),0===f&&(o.status=mt)}else o.status=mt;if(o.status===mt&&(o.gzhead.hcrc?(o.pending+2>o.pending_buf_size&&s(t),o.pending+2<=o.pending_buf_size&&(l(o,255&t.adler),l(o,t.adler>>8&255),t.adler=0,o.status=wt)):o.status=wt),0!==o.pending){if(s(t),0===t.avail_out)return o.last_flush=-1,H}else if(0===t.avail_in&&n(e)<=n(a)&&e!==F)return i(t,P);if(o.status===pt&&0!==t.avail_in)return i(t,P);if(0!==t.avail_in||0!==o.lookahead||e!==I&&o.status!==pt){var c=o.strategy===G?m(o,e):o.strategy===X?g(o,e):Z[o.level].func(o,e);if(c!==yt&&c!==xt||(o.status=pt),c===vt||c===yt)return 0===t.avail_out&&(o.last_flush=-1),H;if(c===kt&&(e===U?C._tr_align(o):e!==L&&(C._tr_stored_block(o,0,0,!1),e===T&&(r(o.head),0===o.lookahead&&(o.strstart=0,o.block_start=0,o.insert=0))),s(t),0===t.avail_out))return o.last_flush=-1,H}return e!==F?H:o.wrap<=0?j:(2===o.wrap?(l(o,255&t.adler),l(o,t.adler>>8&255),l(o,t.adler>>16&255),l(o,t.adler>>24&255),l(o,255&t.total_in),l(o,t.total_in>>8&255),l(o,t.total_in>>16&255),l(o,t.total_in>>24&255)):(h(o,t.adler>>>16),h(o,65535&t.adler)),s(t),o.wrap>0&&(o.wrap=-o.wrap),0!==o.pending?H:j)}function E(t){var e;return t&&t.state?(e=t.state.status,e!==ut&&e!==ct&&e!==bt&&e!==gt&&e!==mt&&e!==wt&&e!==pt?i(t,K):(t.state=null,e===wt?i(t,M):H)):K}function A(t,e){var a,i,n,s,o,l,h,d,f=e.length;if(!t||!t.state)return K;if(a=t.state,s=a.wrap,2===s||1===s&&a.status!==ut||a.lookahead)return K;for(1===s&&(t.adler=N(t.adler,e,f,0)),a.wrap=0,f>=a.w_size&&(0===s&&(r(a.head),a.strstart=0,a.block_start=0,a.insert=0),d=new R.Buf8(a.w_size),R.arraySet(d,e,f-a.w_size,a.w_size,0),e=d,f=a.w_size),o=t.avail_in,l=t.next_in,h=t.input,t.avail_in=f,t.next_in=0,t.input=e,_(a);a.lookahead>=ht;){i=a.strstart,n=a.lookahead-(ht-1);do a.ins_h=(a.ins_h<<a.hash_shift^a.window[i+ht-1])&a.hash_mask,a.prev[i&a.w_mask]=a.head[a.ins_h],a.head[a.ins_h]=i,i++;while(--n);a.strstart=i,a.lookahead=ht-1,_(a)}return a.strstart+=a.lookahead,a.block_start=a.strstart,a.insert=a.lookahead,a.lookahead=0,a.match_length=a.prev_length=ht-1,a.match_available=0,t.next_in=l,t.input=h,t.avail_in=o,a.wrap=s,H}var Z,R=t("../utils/common"),C=t("./trees"),N=t("./adler32"),O=t("./crc32"),D=t("./messages"),I=0,U=1,T=3,F=4,L=5,H=0,j=1,K=-2,M=-3,P=-5,Y=-1,q=1,G=2,X=3,W=4,J=0,Q=2,V=8,$=9,tt=15,et=8,at=29,it=256,nt=it+1+at,rt=30,st=19,ot=2*nt+1,lt=15,ht=3,dt=258,ft=dt+ht+1,_t=32,ut=42,ct=69,bt=73,gt=91,mt=103,wt=113,pt=666,vt=1,kt=2,yt=3,xt=4,zt=3;Z=[new w(0,0,0,0,u),new w(4,4,8,4,c),new w(4,5,16,8,c),new w(4,6,32,32,c),new w(4,4,16,16,b),new w(8,16,32,32,b),new w(8,16,128,128,b),new w(8,32,128,256,b),new w(32,128,258,1024,b),new w(32,258,258,4096,b)],a.deflateInit=B,a.deflateInit2=z,a.deflateReset=y,a.deflateResetKeep=k,a.deflateSetHeader=x,a.deflate=S,a.deflateEnd=E,a.deflateSetDictionary=A,a.deflateInfo="pako deflate (from Nodeca project)"},{"../utils/common":3,"./adler32":5,"./crc32":7,"./messages":13,"./trees":14}],9:[function(t,e,a){"use strict";function i(){this.text=0,this.time=0,this.xflags=0,this.os=0,this.extra=null,this.extra_len=0,this.name="",this.comment="",this.hcrc=0,this.done=!1}e.exports=i},{}],10:[function(t,e,a){"use strict";var i=30,n=12;e.exports=function(t,e){var a,r,s,o,l,h,d,f,_,u,c,b,g,m,w,p,v,k,y,x,z,B,S,E,A;a=t.state,r=t.next_in,E=t.input,s=r+(t.avail_in-5),o=t.next_out,A=t.output,l=o-(e-t.avail_out),h=o+(t.avail_out-257),d=a.dmax,f=a.wsize,_=a.whave,u=a.wnext,c=a.window,b=a.hold,g=a.bits,m=a.lencode,w=a.distcode,p=(1<<a.lenbits)-1,v=(1<<a.distbits)-1;t:do{g<15&&(b+=E[r++]<<g,g+=8,b+=E[r++]<<g,g+=8),k=m[b&p];e:for(;;){if(y=k>>>24,b>>>=y,g-=y,y=k>>>16&255,0===y)A[o++]=65535&k;else{if(!(16&y)){if(0===(64&y)){k=m[(65535&k)+(b&(1<<y)-1)];continue e}if(32&y){a.mode=n;break t}t.msg="invalid literal/length code",a.mode=i;break t}x=65535&k,y&=15,y&&(g<y&&(b+=E[r++]<<g,g+=8),x+=b&(1<<y)-1,b>>>=y,g-=y),g<15&&(b+=E[r++]<<g,g+=8,b+=E[r++]<<g,g+=8),k=w[b&v];a:for(;;){if(y=k>>>24,b>>>=y,g-=y,y=k>>>16&255,!(16&y)){if(0===(64&y)){k=w[(65535&k)+(b&(1<<y)-1)];continue a}t.msg="invalid distance code",a.mode=i;break t}if(z=65535&k,y&=15,g<y&&(b+=E[r++]<<g,g+=8,g<y&&(b+=E[r++]<<g,g+=8)),z+=b&(1<<y)-1,z>d){t.msg="invalid distance too far back",a.mode=i;break t}if(b>>>=y,g-=y,y=o-l,z>y){if(y=z-y,y>_&&a.sane){t.msg="invalid distance too far back",a.mode=i;break t}if(B=0,S=c,0===u){if(B+=f-y,y<x){x-=y;do A[o++]=c[B++];while(--y);B=o-z,S=A}}else if(u<y){if(B+=f+u-y,y-=u,y<x){x-=y;do A[o++]=c[B++];while(--y);if(B=0,u<x){y=u,x-=y;do A[o++]=c[B++];while(--y);B=o-z,S=A}}}else if(B+=u-y,y<x){x-=y;do A[o++]=c[B++];while(--y);B=o-z,S=A}for(;x>2;)A[o++]=S[B++],A[o++]=S[B++],A[o++]=S[B++],x-=3;x&&(A[o++]=S[B++],x>1&&(A[o++]=S[B++]))}else{B=o-z;do A[o++]=A[B++],A[o++]=A[B++],A[o++]=A[B++],x-=3;while(x>2);x&&(A[o++]=A[B++],x>1&&(A[o++]=A[B++]))}break}}break}}while(r<s&&o<h);x=g>>3,r-=x,g-=x<<3,b&=(1<<g)-1,t.next_in=r,t.next_out=o,t.avail_in=r<s?5+(s-r):5-(r-s),t.avail_out=o<h?257+(h-o):257-(o-h),a.hold=b,a.bits=g}},{}],11:[function(t,e,a){"use strict";function i(t){return(t>>>24&255)+(t>>>8&65280)+((65280&t)<<8)+((255&t)<<24)}function n(){this.mode=0,this.last=!1,this.wrap=0,this.havedict=!1,this.flags=0,this.dmax=0,this.check=0,this.total=0,this.head=null,this.wbits=0,this.wsize=0,this.whave=0,this.wnext=0,this.window=null,this.hold=0,this.bits=0,this.length=0,this.offset=0,this.extra=0,this.lencode=null,this.distcode=null,this.lenbits=0,this.distbits=0,this.ncode=0,this.nlen=0,this.ndist=0,this.have=0,this.next=null,this.lens=new w.Buf16(320),this.work=new w.Buf16(288),this.lendyn=null,this.distdyn=null,this.sane=0,this.back=0,this.was=0}function r(t){var e;return t&&t.state?(e=t.state,t.total_in=t.total_out=e.total=0,t.msg="",e.wrap&&(t.adler=1&e.wrap),e.mode=T,e.last=0,e.havedict=0,e.dmax=32768,e.head=null,e.hold=0,e.bits=0,e.lencode=e.lendyn=new w.Buf32(bt),e.distcode=e.distdyn=new w.Buf32(gt),e.sane=1,e.back=-1,Z):N}function s(t){var e;return t&&t.state?(e=t.state,e.wsize=0,e.whave=0,e.wnext=0,r(t)):N}function o(t,e){var a,i;return t&&t.state?(i=t.state,e<0?(a=0,e=-e):(a=(e>>4)+1,e<48&&(e&=15)),e&&(e<8||e>15)?N:(null!==i.window&&i.wbits!==e&&(i.window=null),i.wrap=a,i.wbits=e,s(t))):N}function l(t,e){var a,i;return t?(i=new n,t.state=i,i.window=null,a=o(t,e),a!==Z&&(t.state=null),a):N}function h(t){return l(t,wt)}function d(t){if(pt){var e;for(g=new w.Buf32(512),m=new w.Buf32(32),e=0;e<144;)t.lens[e++]=8;for(;e<256;)t.lens[e++]=9;for(;e<280;)t.lens[e++]=7;for(;e<288;)t.lens[e++]=8;for(y(z,t.lens,0,288,g,0,t.work,{bits:9}),e=0;e<32;)t.lens[e++]=5;y(B,t.lens,0,32,m,0,t.work,{bits:5}),pt=!1}t.lencode=g,t.lenbits=9,t.distcode=m,t.distbits=5}function f(t,e,a,i){var n,r=t.state;return null===r.window&&(r.wsize=1<<r.wbits,r.wnext=0,r.whave=0,r.window=new w.Buf8(r.wsize)),i>=r.wsize?(w.arraySet(r.window,e,a-r.wsize,r.wsize,0),r.wnext=0,r.whave=r.wsize):(n=r.wsize-r.wnext,n>i&&(n=i),w.arraySet(r.window,e,a-i,n,r.wnext),i-=n,i?(w.arraySet(r.window,e,a-i,i,0),r.wnext=i,r.whave=r.wsize):(r.wnext+=n,r.wnext===r.wsize&&(r.wnext=0),r.whave<r.wsize&&(r.whave+=n))),0}function _(t,e){var a,n,r,s,o,l,h,_,u,c,b,g,m,bt,gt,mt,wt,pt,vt,kt,yt,xt,zt,Bt,St=0,Et=new w.Buf8(4),At=[16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15];if(!t||!t.state||!t.output||!t.input&&0!==t.avail_in)return N;a=t.state,a.mode===X&&(a.mode=W),o=t.next_out,r=t.output,h=t.avail_out,s=t.next_in,n=t.input,l=t.avail_in,_=a.hold,u=a.bits,c=l,b=h,xt=Z;t:for(;;)switch(a.mode){case T:if(0===a.wrap){a.mode=W;break}for(;u<16;){if(0===l)break t;l--,_+=n[s++]<<u,u+=8}if(2&a.wrap&&35615===_){a.check=0,Et[0]=255&_,Et[1]=_>>>8&255,a.check=v(a.check,Et,2,0),_=0,u=0,a.mode=F;break}if(a.flags=0,a.head&&(a.head.done=!1),!(1&a.wrap)||(((255&_)<<8)+(_>>8))%31){t.msg="incorrect header check",a.mode=_t;break}if((15&_)!==U){t.msg="unknown compression method",a.mode=_t;break}if(_>>>=4,u-=4,yt=(15&_)+8,0===a.wbits)a.wbits=yt;else if(yt>a.wbits){t.msg="invalid window size",a.mode=_t;break}a.dmax=1<<yt,t.adler=a.check=1,a.mode=512&_?q:X,_=0,u=0;break;case F:for(;u<16;){if(0===l)break t;l--,_+=n[s++]<<u,u+=8}if(a.flags=_,(255&a.flags)!==U){t.msg="unknown compression method",a.mode=_t;break}if(57344&a.flags){t.msg="unknown header flags set",a.mode=_t;break}a.head&&(a.head.text=_>>8&1),512&a.flags&&(Et[0]=255&_,Et[1]=_>>>8&255,a.check=v(a.check,Et,2,0)),_=0,u=0,a.mode=L;case L:for(;u<32;){if(0===l)break t;l--,_+=n[s++]<<u,u+=8}a.head&&(a.head.time=_),512&a.flags&&(Et[0]=255&_,Et[1]=_>>>8&255,Et[2]=_>>>16&255,Et[3]=_>>>24&255,a.check=v(a.check,Et,4,0)),_=0,u=0,a.mode=H;case H:for(;u<16;){if(0===l)break t;l--,_+=n[s++]<<u,u+=8}a.head&&(a.head.xflags=255&_,a.head.os=_>>8),512&a.flags&&(Et[0]=255&_,Et[1]=_>>>8&255,a.check=v(a.check,Et,2,0)),_=0,u=0,a.mode=j;case j:if(1024&a.flags){for(;u<16;){if(0===l)break t;l--,_+=n[s++]<<u,u+=8}a.length=_,a.head&&(a.head.extra_len=_),512&a.flags&&(Et[0]=255&_,Et[1]=_>>>8&255,a.check=v(a.check,Et,2,0)),_=0,u=0}else a.head&&(a.head.extra=null);a.mode=K;case K:if(1024&a.flags&&(g=a.length,g>l&&(g=l),g&&(a.head&&(yt=a.head.extra_len-a.length,a.head.extra||(a.head.extra=new Array(a.head.extra_len)),w.arraySet(a.head.extra,n,s,g,yt)),512&a.flags&&(a.check=v(a.check,n,g,s)),l-=g,s+=g,a.length-=g),a.length))break t;a.length=0,a.mode=M;case M:if(2048&a.flags){if(0===l)break t;g=0;do yt=n[s+g++],a.head&&yt&&a.length<65536&&(a.head.name+=String.fromCharCode(yt));while(yt&&g<l);if(512&a.flags&&(a.check=v(a.check,n,g,s)),l-=g,s+=g,yt)break t}else a.head&&(a.head.name=null);a.length=0,a.mode=P;case P:if(4096&a.flags){if(0===l)break t;g=0;do yt=n[s+g++],a.head&&yt&&a.length<65536&&(a.head.comment+=String.fromCharCode(yt));while(yt&&g<l);if(512&a.flags&&(a.check=v(a.check,n,g,s)),l-=g,s+=g,yt)break t}else a.head&&(a.head.comment=null);a.mode=Y;case Y:if(512&a.flags){for(;u<16;){if(0===l)break t;l--,_+=n[s++]<<u,u+=8}if(_!==(65535&a.check)){t.msg="header crc mismatch",a.mode=_t;break}_=0,u=0}a.head&&(a.head.hcrc=a.flags>>9&1,a.head.done=!0),t.adler=a.check=0,a.mode=X;break;case q:for(;u<32;){if(0===l)break t;l--,_+=n[s++]<<u,u+=8}t.adler=a.check=i(_),_=0,u=0,a.mode=G;case G:if(0===a.havedict)return t.next_out=o,t.avail_out=h,t.next_in=s,t.avail_in=l,a.hold=_,a.bits=u,C;t.adler=a.check=1,a.mode=X;case X:if(e===E||e===A)break t;case W:if(a.last){_>>>=7&u,u-=7&u,a.mode=ht;break}for(;u<3;){if(0===l)break t;l--,_+=n[s++]<<u,u+=8}switch(a.last=1&_,_>>>=1,u-=1,3&_){case 0:a.mode=J;break;case 1:if(d(a),a.mode=at,e===A){_>>>=2,u-=2;break t}break;case 2:a.mode=$;break;case 3:t.msg="invalid block type",a.mode=_t}_>>>=2,u-=2;break;case J:for(_>>>=7&u,u-=7&u;u<32;){if(0===l)break t;l--,_+=n[s++]<<u,u+=8}if((65535&_)!==(_>>>16^65535)){t.msg="invalid stored block lengths",a.mode=_t;break}if(a.length=65535&_,_=0,u=0,a.mode=Q,e===A)break t;case Q:a.mode=V;case V:if(g=a.length){if(g>l&&(g=l),g>h&&(g=h),0===g)break t;w.arraySet(r,n,s,g,o),l-=g,s+=g,h-=g,o+=g,a.length-=g;break}a.mode=X;break;case $:for(;u<14;){if(0===l)break t;
3
+ l--,_+=n[s++]<<u,u+=8}if(a.nlen=(31&_)+257,_>>>=5,u-=5,a.ndist=(31&_)+1,_>>>=5,u-=5,a.ncode=(15&_)+4,_>>>=4,u-=4,a.nlen>286||a.ndist>30){t.msg="too many length or distance symbols",a.mode=_t;break}a.have=0,a.mode=tt;case tt:for(;a.have<a.ncode;){for(;u<3;){if(0===l)break t;l--,_+=n[s++]<<u,u+=8}a.lens[At[a.have++]]=7&_,_>>>=3,u-=3}for(;a.have<19;)a.lens[At[a.have++]]=0;if(a.lencode=a.lendyn,a.lenbits=7,zt={bits:a.lenbits},xt=y(x,a.lens,0,19,a.lencode,0,a.work,zt),a.lenbits=zt.bits,xt){t.msg="invalid code lengths set",a.mode=_t;break}a.have=0,a.mode=et;case et:for(;a.have<a.nlen+a.ndist;){for(;St=a.lencode[_&(1<<a.lenbits)-1],gt=St>>>24,mt=St>>>16&255,wt=65535&St,!(gt<=u);){if(0===l)break t;l--,_+=n[s++]<<u,u+=8}if(wt<16)_>>>=gt,u-=gt,a.lens[a.have++]=wt;else{if(16===wt){for(Bt=gt+2;u<Bt;){if(0===l)break t;l--,_+=n[s++]<<u,u+=8}if(_>>>=gt,u-=gt,0===a.have){t.msg="invalid bit length repeat",a.mode=_t;break}yt=a.lens[a.have-1],g=3+(3&_),_>>>=2,u-=2}else if(17===wt){for(Bt=gt+3;u<Bt;){if(0===l)break t;l--,_+=n[s++]<<u,u+=8}_>>>=gt,u-=gt,yt=0,g=3+(7&_),_>>>=3,u-=3}else{for(Bt=gt+7;u<Bt;){if(0===l)break t;l--,_+=n[s++]<<u,u+=8}_>>>=gt,u-=gt,yt=0,g=11+(127&_),_>>>=7,u-=7}if(a.have+g>a.nlen+a.ndist){t.msg="invalid bit length repeat",a.mode=_t;break}for(;g--;)a.lens[a.have++]=yt}}if(a.mode===_t)break;if(0===a.lens[256]){t.msg="invalid code -- missing end-of-block",a.mode=_t;break}if(a.lenbits=9,zt={bits:a.lenbits},xt=y(z,a.lens,0,a.nlen,a.lencode,0,a.work,zt),a.lenbits=zt.bits,xt){t.msg="invalid literal/lengths set",a.mode=_t;break}if(a.distbits=6,a.distcode=a.distdyn,zt={bits:a.distbits},xt=y(B,a.lens,a.nlen,a.ndist,a.distcode,0,a.work,zt),a.distbits=zt.bits,xt){t.msg="invalid distances set",a.mode=_t;break}if(a.mode=at,e===A)break t;case at:a.mode=it;case it:if(l>=6&&h>=258){t.next_out=o,t.avail_out=h,t.next_in=s,t.avail_in=l,a.hold=_,a.bits=u,k(t,b),o=t.next_out,r=t.output,h=t.avail_out,s=t.next_in,n=t.input,l=t.avail_in,_=a.hold,u=a.bits,a.mode===X&&(a.back=-1);break}for(a.back=0;St=a.lencode[_&(1<<a.lenbits)-1],gt=St>>>24,mt=St>>>16&255,wt=65535&St,!(gt<=u);){if(0===l)break t;l--,_+=n[s++]<<u,u+=8}if(mt&&0===(240&mt)){for(pt=gt,vt=mt,kt=wt;St=a.lencode[kt+((_&(1<<pt+vt)-1)>>pt)],gt=St>>>24,mt=St>>>16&255,wt=65535&St,!(pt+gt<=u);){if(0===l)break t;l--,_+=n[s++]<<u,u+=8}_>>>=pt,u-=pt,a.back+=pt}if(_>>>=gt,u-=gt,a.back+=gt,a.length=wt,0===mt){a.mode=lt;break}if(32&mt){a.back=-1,a.mode=X;break}if(64&mt){t.msg="invalid literal/length code",a.mode=_t;break}a.extra=15&mt,a.mode=nt;case nt:if(a.extra){for(Bt=a.extra;u<Bt;){if(0===l)break t;l--,_+=n[s++]<<u,u+=8}a.length+=_&(1<<a.extra)-1,_>>>=a.extra,u-=a.extra,a.back+=a.extra}a.was=a.length,a.mode=rt;case rt:for(;St=a.distcode[_&(1<<a.distbits)-1],gt=St>>>24,mt=St>>>16&255,wt=65535&St,!(gt<=u);){if(0===l)break t;l--,_+=n[s++]<<u,u+=8}if(0===(240&mt)){for(pt=gt,vt=mt,kt=wt;St=a.distcode[kt+((_&(1<<pt+vt)-1)>>pt)],gt=St>>>24,mt=St>>>16&255,wt=65535&St,!(pt+gt<=u);){if(0===l)break t;l--,_+=n[s++]<<u,u+=8}_>>>=pt,u-=pt,a.back+=pt}if(_>>>=gt,u-=gt,a.back+=gt,64&mt){t.msg="invalid distance code",a.mode=_t;break}a.offset=wt,a.extra=15&mt,a.mode=st;case st:if(a.extra){for(Bt=a.extra;u<Bt;){if(0===l)break t;l--,_+=n[s++]<<u,u+=8}a.offset+=_&(1<<a.extra)-1,_>>>=a.extra,u-=a.extra,a.back+=a.extra}if(a.offset>a.dmax){t.msg="invalid distance too far back",a.mode=_t;break}a.mode=ot;case ot:if(0===h)break t;if(g=b-h,a.offset>g){if(g=a.offset-g,g>a.whave&&a.sane){t.msg="invalid distance too far back",a.mode=_t;break}g>a.wnext?(g-=a.wnext,m=a.wsize-g):m=a.wnext-g,g>a.length&&(g=a.length),bt=a.window}else bt=r,m=o-a.offset,g=a.length;g>h&&(g=h),h-=g,a.length-=g;do r[o++]=bt[m++];while(--g);0===a.length&&(a.mode=it);break;case lt:if(0===h)break t;r[o++]=a.length,h--,a.mode=it;break;case ht:if(a.wrap){for(;u<32;){if(0===l)break t;l--,_|=n[s++]<<u,u+=8}if(b-=h,t.total_out+=b,a.total+=b,b&&(t.adler=a.check=a.flags?v(a.check,r,b,o-b):p(a.check,r,b,o-b)),b=h,(a.flags?_:i(_))!==a.check){t.msg="incorrect data check",a.mode=_t;break}_=0,u=0}a.mode=dt;case dt:if(a.wrap&&a.flags){for(;u<32;){if(0===l)break t;l--,_+=n[s++]<<u,u+=8}if(_!==(4294967295&a.total)){t.msg="incorrect length check",a.mode=_t;break}_=0,u=0}a.mode=ft;case ft:xt=R;break t;case _t:xt=O;break t;case ut:return D;case ct:default:return N}return t.next_out=o,t.avail_out=h,t.next_in=s,t.avail_in=l,a.hold=_,a.bits=u,(a.wsize||b!==t.avail_out&&a.mode<_t&&(a.mode<ht||e!==S))&&f(t,t.output,t.next_out,b-t.avail_out)?(a.mode=ut,D):(c-=t.avail_in,b-=t.avail_out,t.total_in+=c,t.total_out+=b,a.total+=b,a.wrap&&b&&(t.adler=a.check=a.flags?v(a.check,r,b,t.next_out-b):p(a.check,r,b,t.next_out-b)),t.data_type=a.bits+(a.last?64:0)+(a.mode===X?128:0)+(a.mode===at||a.mode===Q?256:0),(0===c&&0===b||e===S)&&xt===Z&&(xt=I),xt)}function u(t){if(!t||!t.state)return N;var e=t.state;return e.window&&(e.window=null),t.state=null,Z}function c(t,e){var a;return t&&t.state?(a=t.state,0===(2&a.wrap)?N:(a.head=e,e.done=!1,Z)):N}function b(t,e){var a,i,n,r=e.length;return t&&t.state?(a=t.state,0!==a.wrap&&a.mode!==G?N:a.mode===G&&(i=1,i=p(i,e,r,0),i!==a.check)?O:(n=f(t,e,r,r))?(a.mode=ut,D):(a.havedict=1,Z)):N}var g,m,w=t("../utils/common"),p=t("./adler32"),v=t("./crc32"),k=t("./inffast"),y=t("./inftrees"),x=0,z=1,B=2,S=4,E=5,A=6,Z=0,R=1,C=2,N=-2,O=-3,D=-4,I=-5,U=8,T=1,F=2,L=3,H=4,j=5,K=6,M=7,P=8,Y=9,q=10,G=11,X=12,W=13,J=14,Q=15,V=16,$=17,tt=18,et=19,at=20,it=21,nt=22,rt=23,st=24,ot=25,lt=26,ht=27,dt=28,ft=29,_t=30,ut=31,ct=32,bt=852,gt=592,mt=15,wt=mt,pt=!0;a.inflateReset=s,a.inflateReset2=o,a.inflateResetKeep=r,a.inflateInit=h,a.inflateInit2=l,a.inflate=_,a.inflateEnd=u,a.inflateGetHeader=c,a.inflateSetDictionary=b,a.inflateInfo="pako inflate (from Nodeca project)"},{"../utils/common":3,"./adler32":5,"./crc32":7,"./inffast":10,"./inftrees":12}],12:[function(t,e,a){"use strict";var i=t("../utils/common"),n=15,r=852,s=592,o=0,l=1,h=2,d=[3,4,5,6,7,8,9,10,11,13,15,17,19,23,27,31,35,43,51,59,67,83,99,115,131,163,195,227,258,0,0],f=[16,16,16,16,16,16,16,16,17,17,17,17,18,18,18,18,19,19,19,19,20,20,20,20,21,21,21,21,16,72,78],_=[1,2,3,4,5,7,9,13,17,25,33,49,65,97,129,193,257,385,513,769,1025,1537,2049,3073,4097,6145,8193,12289,16385,24577,0,0],u=[16,16,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,64,64];e.exports=function(t,e,a,c,b,g,m,w){var p,v,k,y,x,z,B,S,E,A=w.bits,Z=0,R=0,C=0,N=0,O=0,D=0,I=0,U=0,T=0,F=0,L=null,H=0,j=new i.Buf16(n+1),K=new i.Buf16(n+1),M=null,P=0;for(Z=0;Z<=n;Z++)j[Z]=0;for(R=0;R<c;R++)j[e[a+R]]++;for(O=A,N=n;N>=1&&0===j[N];N--);if(O>N&&(O=N),0===N)return b[g++]=20971520,b[g++]=20971520,w.bits=1,0;for(C=1;C<N&&0===j[C];C++);for(O<C&&(O=C),U=1,Z=1;Z<=n;Z++)if(U<<=1,U-=j[Z],U<0)return-1;if(U>0&&(t===o||1!==N))return-1;for(K[1]=0,Z=1;Z<n;Z++)K[Z+1]=K[Z]+j[Z];for(R=0;R<c;R++)0!==e[a+R]&&(m[K[e[a+R]]++]=R);if(t===o?(L=M=m,z=19):t===l?(L=d,H-=257,M=f,P-=257,z=256):(L=_,M=u,z=-1),F=0,R=0,Z=C,x=g,D=O,I=0,k=-1,T=1<<O,y=T-1,t===l&&T>r||t===h&&T>s)return 1;for(var Y=0;;){Y++,B=Z-I,m[R]<z?(S=0,E=m[R]):m[R]>z?(S=M[P+m[R]],E=L[H+m[R]]):(S=96,E=0),p=1<<Z-I,v=1<<D,C=v;do v-=p,b[x+(F>>I)+v]=B<<24|S<<16|E|0;while(0!==v);for(p=1<<Z-1;F&p;)p>>=1;if(0!==p?(F&=p-1,F+=p):F=0,R++,0===--j[Z]){if(Z===N)break;Z=e[a+m[R]]}if(Z>O&&(F&y)!==k){for(0===I&&(I=O),x+=C,D=Z-I,U=1<<D;D+I<N&&(U-=j[D+I],!(U<=0));)D++,U<<=1;if(T+=1<<D,t===l&&T>r||t===h&&T>s)return 1;k=F&y,b[k]=O<<24|D<<16|x-g|0}}return 0!==F&&(b[x+F]=Z-I<<24|64<<16|0),w.bits=O,0}},{"../utils/common":3}],13:[function(t,e,a){"use strict";e.exports={2:"need dictionary",1:"stream end",0:"","-1":"file error","-2":"stream error","-3":"data error","-4":"insufficient memory","-5":"buffer error","-6":"incompatible version"}},{}],14:[function(t,e,a){"use strict";function i(t){for(var e=t.length;--e>=0;)t[e]=0}function n(t,e,a,i,n){this.static_tree=t,this.extra_bits=e,this.extra_base=a,this.elems=i,this.max_length=n,this.has_stree=t&&t.length}function r(t,e){this.dyn_tree=t,this.max_code=0,this.stat_desc=e}function s(t){return t<256?lt[t]:lt[256+(t>>>7)]}function o(t,e){t.pending_buf[t.pending++]=255&e,t.pending_buf[t.pending++]=e>>>8&255}function l(t,e,a){t.bi_valid>W-a?(t.bi_buf|=e<<t.bi_valid&65535,o(t,t.bi_buf),t.bi_buf=e>>W-t.bi_valid,t.bi_valid+=a-W):(t.bi_buf|=e<<t.bi_valid&65535,t.bi_valid+=a)}function h(t,e,a){l(t,a[2*e],a[2*e+1])}function d(t,e){var a=0;do a|=1&t,t>>>=1,a<<=1;while(--e>0);return a>>>1}function f(t){16===t.bi_valid?(o(t,t.bi_buf),t.bi_buf=0,t.bi_valid=0):t.bi_valid>=8&&(t.pending_buf[t.pending++]=255&t.bi_buf,t.bi_buf>>=8,t.bi_valid-=8)}function _(t,e){var a,i,n,r,s,o,l=e.dyn_tree,h=e.max_code,d=e.stat_desc.static_tree,f=e.stat_desc.has_stree,_=e.stat_desc.extra_bits,u=e.stat_desc.extra_base,c=e.stat_desc.max_length,b=0;for(r=0;r<=X;r++)t.bl_count[r]=0;for(l[2*t.heap[t.heap_max]+1]=0,a=t.heap_max+1;a<G;a++)i=t.heap[a],r=l[2*l[2*i+1]+1]+1,r>c&&(r=c,b++),l[2*i+1]=r,i>h||(t.bl_count[r]++,s=0,i>=u&&(s=_[i-u]),o=l[2*i],t.opt_len+=o*(r+s),f&&(t.static_len+=o*(d[2*i+1]+s)));if(0!==b){do{for(r=c-1;0===t.bl_count[r];)r--;t.bl_count[r]--,t.bl_count[r+1]+=2,t.bl_count[c]--,b-=2}while(b>0);for(r=c;0!==r;r--)for(i=t.bl_count[r];0!==i;)n=t.heap[--a],n>h||(l[2*n+1]!==r&&(t.opt_len+=(r-l[2*n+1])*l[2*n],l[2*n+1]=r),i--)}}function u(t,e,a){var i,n,r=new Array(X+1),s=0;for(i=1;i<=X;i++)r[i]=s=s+a[i-1]<<1;for(n=0;n<=e;n++){var o=t[2*n+1];0!==o&&(t[2*n]=d(r[o]++,o))}}function c(){var t,e,a,i,r,s=new Array(X+1);for(a=0,i=0;i<K-1;i++)for(dt[i]=a,t=0;t<1<<et[i];t++)ht[a++]=i;for(ht[a-1]=i,r=0,i=0;i<16;i++)for(ft[i]=r,t=0;t<1<<at[i];t++)lt[r++]=i;for(r>>=7;i<Y;i++)for(ft[i]=r<<7,t=0;t<1<<at[i]-7;t++)lt[256+r++]=i;for(e=0;e<=X;e++)s[e]=0;for(t=0;t<=143;)st[2*t+1]=8,t++,s[8]++;for(;t<=255;)st[2*t+1]=9,t++,s[9]++;for(;t<=279;)st[2*t+1]=7,t++,s[7]++;for(;t<=287;)st[2*t+1]=8,t++,s[8]++;for(u(st,P+1,s),t=0;t<Y;t++)ot[2*t+1]=5,ot[2*t]=d(t,5);_t=new n(st,et,M+1,P,X),ut=new n(ot,at,0,Y,X),ct=new n(new Array(0),it,0,q,J)}function b(t){var e;for(e=0;e<P;e++)t.dyn_ltree[2*e]=0;for(e=0;e<Y;e++)t.dyn_dtree[2*e]=0;for(e=0;e<q;e++)t.bl_tree[2*e]=0;t.dyn_ltree[2*Q]=1,t.opt_len=t.static_len=0,t.last_lit=t.matches=0}function g(t){t.bi_valid>8?o(t,t.bi_buf):t.bi_valid>0&&(t.pending_buf[t.pending++]=t.bi_buf),t.bi_buf=0,t.bi_valid=0}function m(t,e,a,i){g(t),i&&(o(t,a),o(t,~a)),N.arraySet(t.pending_buf,t.window,e,a,t.pending),t.pending+=a}function w(t,e,a,i){var n=2*e,r=2*a;return t[n]<t[r]||t[n]===t[r]&&i[e]<=i[a]}function p(t,e,a){for(var i=t.heap[a],n=a<<1;n<=t.heap_len&&(n<t.heap_len&&w(e,t.heap[n+1],t.heap[n],t.depth)&&n++,!w(e,i,t.heap[n],t.depth));)t.heap[a]=t.heap[n],a=n,n<<=1;t.heap[a]=i}function v(t,e,a){var i,n,r,o,d=0;if(0!==t.last_lit)do i=t.pending_buf[t.d_buf+2*d]<<8|t.pending_buf[t.d_buf+2*d+1],n=t.pending_buf[t.l_buf+d],d++,0===i?h(t,n,e):(r=ht[n],h(t,r+M+1,e),o=et[r],0!==o&&(n-=dt[r],l(t,n,o)),i--,r=s(i),h(t,r,a),o=at[r],0!==o&&(i-=ft[r],l(t,i,o)));while(d<t.last_lit);h(t,Q,e)}function k(t,e){var a,i,n,r=e.dyn_tree,s=e.stat_desc.static_tree,o=e.stat_desc.has_stree,l=e.stat_desc.elems,h=-1;for(t.heap_len=0,t.heap_max=G,a=0;a<l;a++)0!==r[2*a]?(t.heap[++t.heap_len]=h=a,t.depth[a]=0):r[2*a+1]=0;for(;t.heap_len<2;)n=t.heap[++t.heap_len]=h<2?++h:0,r[2*n]=1,t.depth[n]=0,t.opt_len--,o&&(t.static_len-=s[2*n+1]);for(e.max_code=h,a=t.heap_len>>1;a>=1;a--)p(t,r,a);n=l;do a=t.heap[1],t.heap[1]=t.heap[t.heap_len--],p(t,r,1),i=t.heap[1],t.heap[--t.heap_max]=a,t.heap[--t.heap_max]=i,r[2*n]=r[2*a]+r[2*i],t.depth[n]=(t.depth[a]>=t.depth[i]?t.depth[a]:t.depth[i])+1,r[2*a+1]=r[2*i+1]=n,t.heap[1]=n++,p(t,r,1);while(t.heap_len>=2);t.heap[--t.heap_max]=t.heap[1],_(t,e),u(r,h,t.bl_count)}function y(t,e,a){var i,n,r=-1,s=e[1],o=0,l=7,h=4;for(0===s&&(l=138,h=3),e[2*(a+1)+1]=65535,i=0;i<=a;i++)n=s,s=e[2*(i+1)+1],++o<l&&n===s||(o<h?t.bl_tree[2*n]+=o:0!==n?(n!==r&&t.bl_tree[2*n]++,t.bl_tree[2*V]++):o<=10?t.bl_tree[2*$]++:t.bl_tree[2*tt]++,o=0,r=n,0===s?(l=138,h=3):n===s?(l=6,h=3):(l=7,h=4))}function x(t,e,a){var i,n,r=-1,s=e[1],o=0,d=7,f=4;for(0===s&&(d=138,f=3),i=0;i<=a;i++)if(n=s,s=e[2*(i+1)+1],!(++o<d&&n===s)){if(o<f){do h(t,n,t.bl_tree);while(0!==--o)}else 0!==n?(n!==r&&(h(t,n,t.bl_tree),o--),h(t,V,t.bl_tree),l(t,o-3,2)):o<=10?(h(t,$,t.bl_tree),l(t,o-3,3)):(h(t,tt,t.bl_tree),l(t,o-11,7));o=0,r=n,0===s?(d=138,f=3):n===s?(d=6,f=3):(d=7,f=4)}}function z(t){var e;for(y(t,t.dyn_ltree,t.l_desc.max_code),y(t,t.dyn_dtree,t.d_desc.max_code),k(t,t.bl_desc),e=q-1;e>=3&&0===t.bl_tree[2*nt[e]+1];e--);return t.opt_len+=3*(e+1)+5+5+4,e}function B(t,e,a,i){var n;for(l(t,e-257,5),l(t,a-1,5),l(t,i-4,4),n=0;n<i;n++)l(t,t.bl_tree[2*nt[n]+1],3);x(t,t.dyn_ltree,e-1),x(t,t.dyn_dtree,a-1)}function S(t){var e,a=4093624447;for(e=0;e<=31;e++,a>>>=1)if(1&a&&0!==t.dyn_ltree[2*e])return D;if(0!==t.dyn_ltree[18]||0!==t.dyn_ltree[20]||0!==t.dyn_ltree[26])return I;for(e=32;e<M;e++)if(0!==t.dyn_ltree[2*e])return I;return D}function E(t){bt||(c(),bt=!0),t.l_desc=new r(t.dyn_ltree,_t),t.d_desc=new r(t.dyn_dtree,ut),t.bl_desc=new r(t.bl_tree,ct),t.bi_buf=0,t.bi_valid=0,b(t)}function A(t,e,a,i){l(t,(T<<1)+(i?1:0),3),m(t,e,a,!0)}function Z(t){l(t,F<<1,3),h(t,Q,st),f(t)}function R(t,e,a,i){var n,r,s=0;t.level>0?(t.strm.data_type===U&&(t.strm.data_type=S(t)),k(t,t.l_desc),k(t,t.d_desc),s=z(t),n=t.opt_len+3+7>>>3,r=t.static_len+3+7>>>3,r<=n&&(n=r)):n=r=a+5,a+4<=n&&e!==-1?A(t,e,a,i):t.strategy===O||r===n?(l(t,(F<<1)+(i?1:0),3),v(t,st,ot)):(l(t,(L<<1)+(i?1:0),3),B(t,t.l_desc.max_code+1,t.d_desc.max_code+1,s+1),v(t,t.dyn_ltree,t.dyn_dtree)),b(t),i&&g(t)}function C(t,e,a){return t.pending_buf[t.d_buf+2*t.last_lit]=e>>>8&255,t.pending_buf[t.d_buf+2*t.last_lit+1]=255&e,t.pending_buf[t.l_buf+t.last_lit]=255&a,t.last_lit++,0===e?t.dyn_ltree[2*a]++:(t.matches++,e--,t.dyn_ltree[2*(ht[a]+M+1)]++,t.dyn_dtree[2*s(e)]++),t.last_lit===t.lit_bufsize-1}var N=t("../utils/common"),O=4,D=0,I=1,U=2,T=0,F=1,L=2,H=3,j=258,K=29,M=256,P=M+1+K,Y=30,q=19,G=2*P+1,X=15,W=16,J=7,Q=256,V=16,$=17,tt=18,et=[0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,0],at=[0,0,0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13],it=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,7],nt=[16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15],rt=512,st=new Array(2*(P+2));i(st);var ot=new Array(2*Y);i(ot);var lt=new Array(rt);i(lt);var ht=new Array(j-H+1);i(ht);var dt=new Array(K);i(dt);var ft=new Array(Y);i(ft);var _t,ut,ct,bt=!1;a._tr_init=E,a._tr_stored_block=A,a._tr_flush_block=R,a._tr_tally=C,a._tr_align=Z},{"../utils/common":3}],15:[function(t,e,a){"use strict";function i(){this.input=null,this.next_in=0,this.avail_in=0,this.total_in=0,this.output=null,this.next_out=0,this.avail_out=0,this.total_out=0,this.msg="",this.state=null,this.data_type=2,this.adler=0}e.exports=i},{}],"/":[function(t,e,a){"use strict";var i=t("./lib/utils/common").assign,n=t("./lib/deflate"),r=t("./lib/inflate"),s=t("./lib/zlib/constants"),o={};i(o,n,r,s),e.exports=o},{"./lib/deflate":1,"./lib/inflate":2,"./lib/utils/common":3,"./lib/zlib/constants":6}]},{},[])("/")});
@@ -0,0 +1,3879 @@
1
+ /* pako 0.2.9 nodeca/pako */(function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.pako = f()}})(function(){var define,module,exports;return (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){
2
+ 'use strict';
3
+
4
+
5
+ var TYPED_OK = (typeof Uint8Array !== 'undefined') &&
6
+ (typeof Uint16Array !== 'undefined') &&
7
+ (typeof Int32Array !== 'undefined');
8
+
9
+
10
+ exports.assign = function (obj /*from1, from2, from3, ...*/) {
11
+ var sources = Array.prototype.slice.call(arguments, 1);
12
+ while (sources.length) {
13
+ var source = sources.shift();
14
+ if (!source) { continue; }
15
+
16
+ if (typeof source !== 'object') {
17
+ throw new TypeError(source + 'must be non-object');
18
+ }
19
+
20
+ for (var p in source) {
21
+ if (source.hasOwnProperty(p)) {
22
+ obj[p] = source[p];
23
+ }
24
+ }
25
+ }
26
+
27
+ return obj;
28
+ };
29
+
30
+
31
+ // reduce buffer size, avoiding mem copy
32
+ exports.shrinkBuf = function (buf, size) {
33
+ if (buf.length === size) { return buf; }
34
+ if (buf.subarray) { return buf.subarray(0, size); }
35
+ buf.length = size;
36
+ return buf;
37
+ };
38
+
39
+
40
+ var fnTyped = {
41
+ arraySet: function (dest, src, src_offs, len, dest_offs) {
42
+ if (src.subarray && dest.subarray) {
43
+ dest.set(src.subarray(src_offs, src_offs + len), dest_offs);
44
+ return;
45
+ }
46
+ // Fallback to ordinary array
47
+ for (var i = 0; i < len; i++) {
48
+ dest[dest_offs + i] = src[src_offs + i];
49
+ }
50
+ },
51
+ // Join array of chunks to single array.
52
+ flattenChunks: function (chunks) {
53
+ var i, l, len, pos, chunk, result;
54
+
55
+ // calculate data length
56
+ len = 0;
57
+ for (i = 0, l = chunks.length; i < l; i++) {
58
+ len += chunks[i].length;
59
+ }
60
+
61
+ // join chunks
62
+ result = new Uint8Array(len);
63
+ pos = 0;
64
+ for (i = 0, l = chunks.length; i < l; i++) {
65
+ chunk = chunks[i];
66
+ result.set(chunk, pos);
67
+ pos += chunk.length;
68
+ }
69
+
70
+ return result;
71
+ }
72
+ };
73
+
74
+ var fnUntyped = {
75
+ arraySet: function (dest, src, src_offs, len, dest_offs) {
76
+ for (var i = 0; i < len; i++) {
77
+ dest[dest_offs + i] = src[src_offs + i];
78
+ }
79
+ },
80
+ // Join array of chunks to single array.
81
+ flattenChunks: function (chunks) {
82
+ return [].concat.apply([], chunks);
83
+ }
84
+ };
85
+
86
+
87
+ // Enable/Disable typed arrays use, for testing
88
+ //
89
+ exports.setTyped = function (on) {
90
+ if (on) {
91
+ exports.Buf8 = Uint8Array;
92
+ exports.Buf16 = Uint16Array;
93
+ exports.Buf32 = Int32Array;
94
+ exports.assign(exports, fnTyped);
95
+ } else {
96
+ exports.Buf8 = Array;
97
+ exports.Buf16 = Array;
98
+ exports.Buf32 = Array;
99
+ exports.assign(exports, fnUntyped);
100
+ }
101
+ };
102
+
103
+ exports.setTyped(TYPED_OK);
104
+
105
+ },{}],2:[function(require,module,exports){
106
+ // String encode/decode helpers
107
+ 'use strict';
108
+
109
+
110
+ var utils = require('./common');
111
+
112
+
113
+ // Quick check if we can use fast array to bin string conversion
114
+ //
115
+ // - apply(Array) can fail on Android 2.2
116
+ // - apply(Uint8Array) can fail on iOS 5.1 Safary
117
+ //
118
+ var STR_APPLY_OK = true;
119
+ var STR_APPLY_UIA_OK = true;
120
+
121
+ try { String.fromCharCode.apply(null, [ 0 ]); } catch (__) { STR_APPLY_OK = false; }
122
+ try { String.fromCharCode.apply(null, new Uint8Array(1)); } catch (__) { STR_APPLY_UIA_OK = false; }
123
+
124
+
125
+ // Table with utf8 lengths (calculated by first byte of sequence)
126
+ // Note, that 5 & 6-byte values and some 4-byte values can not be represented in JS,
127
+ // because max possible codepoint is 0x10ffff
128
+ var _utf8len = new utils.Buf8(256);
129
+ for (var q = 0; q < 256; q++) {
130
+ _utf8len[q] = (q >= 252 ? 6 : q >= 248 ? 5 : q >= 240 ? 4 : q >= 224 ? 3 : q >= 192 ? 2 : 1);
131
+ }
132
+ _utf8len[254] = _utf8len[254] = 1; // Invalid sequence start
133
+
134
+
135
+ // convert string to array (typed, when possible)
136
+ exports.string2buf = function (str) {
137
+ var buf, c, c2, m_pos, i, str_len = str.length, buf_len = 0;
138
+
139
+ // count binary size
140
+ for (m_pos = 0; m_pos < str_len; m_pos++) {
141
+ c = str.charCodeAt(m_pos);
142
+ if ((c & 0xfc00) === 0xd800 && (m_pos + 1 < str_len)) {
143
+ c2 = str.charCodeAt(m_pos + 1);
144
+ if ((c2 & 0xfc00) === 0xdc00) {
145
+ c = 0x10000 + ((c - 0xd800) << 10) + (c2 - 0xdc00);
146
+ m_pos++;
147
+ }
148
+ }
149
+ buf_len += c < 0x80 ? 1 : c < 0x800 ? 2 : c < 0x10000 ? 3 : 4;
150
+ }
151
+
152
+ // allocate buffer
153
+ buf = new utils.Buf8(buf_len);
154
+
155
+ // convert
156
+ for (i = 0, m_pos = 0; i < buf_len; m_pos++) {
157
+ c = str.charCodeAt(m_pos);
158
+ if ((c & 0xfc00) === 0xd800 && (m_pos + 1 < str_len)) {
159
+ c2 = str.charCodeAt(m_pos + 1);
160
+ if ((c2 & 0xfc00) === 0xdc00) {
161
+ c = 0x10000 + ((c - 0xd800) << 10) + (c2 - 0xdc00);
162
+ m_pos++;
163
+ }
164
+ }
165
+ if (c < 0x80) {
166
+ /* one byte */
167
+ buf[i++] = c;
168
+ } else if (c < 0x800) {
169
+ /* two bytes */
170
+ buf[i++] = 0xC0 | (c >>> 6);
171
+ buf[i++] = 0x80 | (c & 0x3f);
172
+ } else if (c < 0x10000) {
173
+ /* three bytes */
174
+ buf[i++] = 0xE0 | (c >>> 12);
175
+ buf[i++] = 0x80 | (c >>> 6 & 0x3f);
176
+ buf[i++] = 0x80 | (c & 0x3f);
177
+ } else {
178
+ /* four bytes */
179
+ buf[i++] = 0xf0 | (c >>> 18);
180
+ buf[i++] = 0x80 | (c >>> 12 & 0x3f);
181
+ buf[i++] = 0x80 | (c >>> 6 & 0x3f);
182
+ buf[i++] = 0x80 | (c & 0x3f);
183
+ }
184
+ }
185
+
186
+ return buf;
187
+ };
188
+
189
+ // Helper (used in 2 places)
190
+ function buf2binstring(buf, len) {
191
+ // use fallback for big arrays to avoid stack overflow
192
+ if (len < 65537) {
193
+ if ((buf.subarray && STR_APPLY_UIA_OK) || (!buf.subarray && STR_APPLY_OK)) {
194
+ return String.fromCharCode.apply(null, utils.shrinkBuf(buf, len));
195
+ }
196
+ }
197
+
198
+ var result = '';
199
+ for (var i = 0; i < len; i++) {
200
+ result += String.fromCharCode(buf[i]);
201
+ }
202
+ return result;
203
+ }
204
+
205
+
206
+ // Convert byte array to binary string
207
+ exports.buf2binstring = function (buf) {
208
+ return buf2binstring(buf, buf.length);
209
+ };
210
+
211
+
212
+ // Convert binary string (typed, when possible)
213
+ exports.binstring2buf = function (str) {
214
+ var buf = new utils.Buf8(str.length);
215
+ for (var i = 0, len = buf.length; i < len; i++) {
216
+ buf[i] = str.charCodeAt(i);
217
+ }
218
+ return buf;
219
+ };
220
+
221
+
222
+ // convert array to string
223
+ exports.buf2string = function (buf, max) {
224
+ var i, out, c, c_len;
225
+ var len = max || buf.length;
226
+
227
+ // Reserve max possible length (2 words per char)
228
+ // NB: by unknown reasons, Array is significantly faster for
229
+ // String.fromCharCode.apply than Uint16Array.
230
+ var utf16buf = new Array(len * 2);
231
+
232
+ for (out = 0, i = 0; i < len;) {
233
+ c = buf[i++];
234
+ // quick process ascii
235
+ if (c < 0x80) { utf16buf[out++] = c; continue; }
236
+
237
+ c_len = _utf8len[c];
238
+ // skip 5 & 6 byte codes
239
+ if (c_len > 4) { utf16buf[out++] = 0xfffd; i += c_len - 1; continue; }
240
+
241
+ // apply mask on first byte
242
+ c &= c_len === 2 ? 0x1f : c_len === 3 ? 0x0f : 0x07;
243
+ // join the rest
244
+ while (c_len > 1 && i < len) {
245
+ c = (c << 6) | (buf[i++] & 0x3f);
246
+ c_len--;
247
+ }
248
+
249
+ // terminated by end of string?
250
+ if (c_len > 1) { utf16buf[out++] = 0xfffd; continue; }
251
+
252
+ if (c < 0x10000) {
253
+ utf16buf[out++] = c;
254
+ } else {
255
+ c -= 0x10000;
256
+ utf16buf[out++] = 0xd800 | ((c >> 10) & 0x3ff);
257
+ utf16buf[out++] = 0xdc00 | (c & 0x3ff);
258
+ }
259
+ }
260
+
261
+ return buf2binstring(utf16buf, out);
262
+ };
263
+
264
+
265
+ // Calculate max possible position in utf8 buffer,
266
+ // that will not break sequence. If that's not possible
267
+ // - (very small limits) return max size as is.
268
+ //
269
+ // buf[] - utf8 bytes array
270
+ // max - length limit (mandatory);
271
+ exports.utf8border = function (buf, max) {
272
+ var pos;
273
+
274
+ max = max || buf.length;
275
+ if (max > buf.length) { max = buf.length; }
276
+
277
+ // go back from last position, until start of sequence found
278
+ pos = max - 1;
279
+ while (pos >= 0 && (buf[pos] & 0xC0) === 0x80) { pos--; }
280
+
281
+ // Fuckup - very small and broken sequence,
282
+ // return max, because we should return something anyway.
283
+ if (pos < 0) { return max; }
284
+
285
+ // If we came to start of buffer - that means vuffer is too small,
286
+ // return max too.
287
+ if (pos === 0) { return max; }
288
+
289
+ return (pos + _utf8len[buf[pos]] > max) ? pos : max;
290
+ };
291
+
292
+ },{"./common":1}],3:[function(require,module,exports){
293
+ 'use strict';
294
+
295
+ // Note: adler32 takes 12% for level 0 and 2% for level 6.
296
+ // It doesn't worth to make additional optimizationa as in original.
297
+ // Small size is preferable.
298
+
299
+ function adler32(adler, buf, len, pos) {
300
+ var s1 = (adler & 0xffff) |0,
301
+ s2 = ((adler >>> 16) & 0xffff) |0,
302
+ n = 0;
303
+
304
+ while (len !== 0) {
305
+ // Set limit ~ twice less than 5552, to keep
306
+ // s2 in 31-bits, because we force signed ints.
307
+ // in other case %= will fail.
308
+ n = len > 2000 ? 2000 : len;
309
+ len -= n;
310
+
311
+ do {
312
+ s1 = (s1 + buf[pos++]) |0;
313
+ s2 = (s2 + s1) |0;
314
+ } while (--n);
315
+
316
+ s1 %= 65521;
317
+ s2 %= 65521;
318
+ }
319
+
320
+ return (s1 | (s2 << 16)) |0;
321
+ }
322
+
323
+
324
+ module.exports = adler32;
325
+
326
+ },{}],4:[function(require,module,exports){
327
+ 'use strict';
328
+
329
+ // Note: we can't get significant speed boost here.
330
+ // So write code to minimize size - no pregenerated tables
331
+ // and array tools dependencies.
332
+
333
+
334
+ // Use ordinary array, since untyped makes no boost here
335
+ function makeTable() {
336
+ var c, table = [];
337
+
338
+ for (var n = 0; n < 256; n++) {
339
+ c = n;
340
+ for (var k = 0; k < 8; k++) {
341
+ c = ((c & 1) ? (0xEDB88320 ^ (c >>> 1)) : (c >>> 1));
342
+ }
343
+ table[n] = c;
344
+ }
345
+
346
+ return table;
347
+ }
348
+
349
+ // Create table on load. Just 255 signed longs. Not a problem.
350
+ var crcTable = makeTable();
351
+
352
+
353
+ function crc32(crc, buf, len, pos) {
354
+ var t = crcTable,
355
+ end = pos + len;
356
+
357
+ crc ^= -1;
358
+
359
+ for (var i = pos; i < end; i++) {
360
+ crc = (crc >>> 8) ^ t[(crc ^ buf[i]) & 0xFF];
361
+ }
362
+
363
+ return (crc ^ (-1)); // >>> 0;
364
+ }
365
+
366
+
367
+ module.exports = crc32;
368
+
369
+ },{}],5:[function(require,module,exports){
370
+ 'use strict';
371
+
372
+ var utils = require('../utils/common');
373
+ var trees = require('./trees');
374
+ var adler32 = require('./adler32');
375
+ var crc32 = require('./crc32');
376
+ var msg = require('./messages');
377
+
378
+ /* Public constants ==========================================================*/
379
+ /* ===========================================================================*/
380
+
381
+
382
+ /* Allowed flush values; see deflate() and inflate() below for details */
383
+ var Z_NO_FLUSH = 0;
384
+ var Z_PARTIAL_FLUSH = 1;
385
+ //var Z_SYNC_FLUSH = 2;
386
+ var Z_FULL_FLUSH = 3;
387
+ var Z_FINISH = 4;
388
+ var Z_BLOCK = 5;
389
+ //var Z_TREES = 6;
390
+
391
+
392
+ /* Return codes for the compression/decompression functions. Negative values
393
+ * are errors, positive values are used for special but normal events.
394
+ */
395
+ var Z_OK = 0;
396
+ var Z_STREAM_END = 1;
397
+ //var Z_NEED_DICT = 2;
398
+ //var Z_ERRNO = -1;
399
+ var Z_STREAM_ERROR = -2;
400
+ var Z_DATA_ERROR = -3;
401
+ //var Z_MEM_ERROR = -4;
402
+ var Z_BUF_ERROR = -5;
403
+ //var Z_VERSION_ERROR = -6;
404
+
405
+
406
+ /* compression levels */
407
+ //var Z_NO_COMPRESSION = 0;
408
+ //var Z_BEST_SPEED = 1;
409
+ //var Z_BEST_COMPRESSION = 9;
410
+ var Z_DEFAULT_COMPRESSION = -1;
411
+
412
+
413
+ var Z_FILTERED = 1;
414
+ var Z_HUFFMAN_ONLY = 2;
415
+ var Z_RLE = 3;
416
+ var Z_FIXED = 4;
417
+ var Z_DEFAULT_STRATEGY = 0;
418
+
419
+ /* Possible values of the data_type field (though see inflate()) */
420
+ //var Z_BINARY = 0;
421
+ //var Z_TEXT = 1;
422
+ //var Z_ASCII = 1; // = Z_TEXT
423
+ var Z_UNKNOWN = 2;
424
+
425
+
426
+ /* The deflate compression method */
427
+ var Z_DEFLATED = 8;
428
+
429
+ /*============================================================================*/
430
+
431
+
432
+ var MAX_MEM_LEVEL = 9;
433
+ /* Maximum value for memLevel in deflateInit2 */
434
+ var MAX_WBITS = 15;
435
+ /* 32K LZ77 window */
436
+ var DEF_MEM_LEVEL = 8;
437
+
438
+
439
+ var LENGTH_CODES = 29;
440
+ /* number of length codes, not counting the special END_BLOCK code */
441
+ var LITERALS = 256;
442
+ /* number of literal bytes 0..255 */
443
+ var L_CODES = LITERALS + 1 + LENGTH_CODES;
444
+ /* number of Literal or Length codes, including the END_BLOCK code */
445
+ var D_CODES = 30;
446
+ /* number of distance codes */
447
+ var BL_CODES = 19;
448
+ /* number of codes used to transfer the bit lengths */
449
+ var HEAP_SIZE = 2 * L_CODES + 1;
450
+ /* maximum heap size */
451
+ var MAX_BITS = 15;
452
+ /* All codes must not exceed MAX_BITS bits */
453
+
454
+ var MIN_MATCH = 3;
455
+ var MAX_MATCH = 258;
456
+ var MIN_LOOKAHEAD = (MAX_MATCH + MIN_MATCH + 1);
457
+
458
+ var PRESET_DICT = 0x20;
459
+
460
+ var INIT_STATE = 42;
461
+ var EXTRA_STATE = 69;
462
+ var NAME_STATE = 73;
463
+ var COMMENT_STATE = 91;
464
+ var HCRC_STATE = 103;
465
+ var BUSY_STATE = 113;
466
+ var FINISH_STATE = 666;
467
+
468
+ var BS_NEED_MORE = 1; /* block not completed, need more input or more output */
469
+ var BS_BLOCK_DONE = 2; /* block flush performed */
470
+ var BS_FINISH_STARTED = 3; /* finish started, need only more output at next deflate */
471
+ var BS_FINISH_DONE = 4; /* finish done, accept no more input or output */
472
+
473
+ var OS_CODE = 0x03; // Unix :) . Don't detect, use this default.
474
+
475
+ function err(strm, errorCode) {
476
+ strm.msg = msg[errorCode];
477
+ return errorCode;
478
+ }
479
+
480
+ function rank(f) {
481
+ return ((f) << 1) - ((f) > 4 ? 9 : 0);
482
+ }
483
+
484
+ function zero(buf) { var len = buf.length; while (--len >= 0) { buf[len] = 0; } }
485
+
486
+
487
+ /* =========================================================================
488
+ * Flush as much pending output as possible. All deflate() output goes
489
+ * through this function so some applications may wish to modify it
490
+ * to avoid allocating a large strm->output buffer and copying into it.
491
+ * (See also read_buf()).
492
+ */
493
+ function flush_pending(strm) {
494
+ var s = strm.state;
495
+
496
+ //_tr_flush_bits(s);
497
+ var len = s.pending;
498
+ if (len > strm.avail_out) {
499
+ len = strm.avail_out;
500
+ }
501
+ if (len === 0) { return; }
502
+
503
+ utils.arraySet(strm.output, s.pending_buf, s.pending_out, len, strm.next_out);
504
+ strm.next_out += len;
505
+ s.pending_out += len;
506
+ strm.total_out += len;
507
+ strm.avail_out -= len;
508
+ s.pending -= len;
509
+ if (s.pending === 0) {
510
+ s.pending_out = 0;
511
+ }
512
+ }
513
+
514
+
515
+ function flush_block_only(s, last) {
516
+ trees._tr_flush_block(s, (s.block_start >= 0 ? s.block_start : -1), s.strstart - s.block_start, last);
517
+ s.block_start = s.strstart;
518
+ flush_pending(s.strm);
519
+ }
520
+
521
+
522
+ function put_byte(s, b) {
523
+ s.pending_buf[s.pending++] = b;
524
+ }
525
+
526
+
527
+ /* =========================================================================
528
+ * Put a short in the pending buffer. The 16-bit value is put in MSB order.
529
+ * IN assertion: the stream state is correct and there is enough room in
530
+ * pending_buf.
531
+ */
532
+ function putShortMSB(s, b) {
533
+ // put_byte(s, (Byte)(b >> 8));
534
+ // put_byte(s, (Byte)(b & 0xff));
535
+ s.pending_buf[s.pending++] = (b >>> 8) & 0xff;
536
+ s.pending_buf[s.pending++] = b & 0xff;
537
+ }
538
+
539
+
540
+ /* ===========================================================================
541
+ * Read a new buffer from the current input stream, update the adler32
542
+ * and total number of bytes read. All deflate() input goes through
543
+ * this function so some applications may wish to modify it to avoid
544
+ * allocating a large strm->input buffer and copying from it.
545
+ * (See also flush_pending()).
546
+ */
547
+ function read_buf(strm, buf, start, size) {
548
+ var len = strm.avail_in;
549
+
550
+ if (len > size) { len = size; }
551
+ if (len === 0) { return 0; }
552
+
553
+ strm.avail_in -= len;
554
+
555
+ // zmemcpy(buf, strm->next_in, len);
556
+ utils.arraySet(buf, strm.input, strm.next_in, len, start);
557
+ if (strm.state.wrap === 1) {
558
+ strm.adler = adler32(strm.adler, buf, len, start);
559
+ }
560
+
561
+ else if (strm.state.wrap === 2) {
562
+ strm.adler = crc32(strm.adler, buf, len, start);
563
+ }
564
+
565
+ strm.next_in += len;
566
+ strm.total_in += len;
567
+
568
+ return len;
569
+ }
570
+
571
+
572
+ /* ===========================================================================
573
+ * Set match_start to the longest match starting at the given string and
574
+ * return its length. Matches shorter or equal to prev_length are discarded,
575
+ * in which case the result is equal to prev_length and match_start is
576
+ * garbage.
577
+ * IN assertions: cur_match is the head of the hash chain for the current
578
+ * string (strstart) and its distance is <= MAX_DIST, and prev_length >= 1
579
+ * OUT assertion: the match length is not greater than s->lookahead.
580
+ */
581
+ function longest_match(s, cur_match) {
582
+ var chain_length = s.max_chain_length; /* max hash chain length */
583
+ var scan = s.strstart; /* current string */
584
+ var match; /* matched string */
585
+ var len; /* length of current match */
586
+ var best_len = s.prev_length; /* best match length so far */
587
+ var nice_match = s.nice_match; /* stop if match long enough */
588
+ var limit = (s.strstart > (s.w_size - MIN_LOOKAHEAD)) ?
589
+ s.strstart - (s.w_size - MIN_LOOKAHEAD) : 0/*NIL*/;
590
+
591
+ var _win = s.window; // shortcut
592
+
593
+ var wmask = s.w_mask;
594
+ var prev = s.prev;
595
+
596
+ /* Stop when cur_match becomes <= limit. To simplify the code,
597
+ * we prevent matches with the string of window index 0.
598
+ */
599
+
600
+ var strend = s.strstart + MAX_MATCH;
601
+ var scan_end1 = _win[scan + best_len - 1];
602
+ var scan_end = _win[scan + best_len];
603
+
604
+ /* The code is optimized for HASH_BITS >= 8 and MAX_MATCH-2 multiple of 16.
605
+ * It is easy to get rid of this optimization if necessary.
606
+ */
607
+ // Assert(s->hash_bits >= 8 && MAX_MATCH == 258, "Code too clever");
608
+
609
+ /* Do not waste too much time if we already have a good match: */
610
+ if (s.prev_length >= s.good_match) {
611
+ chain_length >>= 2;
612
+ }
613
+ /* Do not look for matches beyond the end of the input. This is necessary
614
+ * to make deflate deterministic.
615
+ */
616
+ if (nice_match > s.lookahead) { nice_match = s.lookahead; }
617
+
618
+ // Assert((ulg)s->strstart <= s->window_size-MIN_LOOKAHEAD, "need lookahead");
619
+
620
+ do {
621
+ // Assert(cur_match < s->strstart, "no future");
622
+ match = cur_match;
623
+
624
+ /* Skip to next match if the match length cannot increase
625
+ * or if the match length is less than 2. Note that the checks below
626
+ * for insufficient lookahead only occur occasionally for performance
627
+ * reasons. Therefore uninitialized memory will be accessed, and
628
+ * conditional jumps will be made that depend on those values.
629
+ * However the length of the match is limited to the lookahead, so
630
+ * the output of deflate is not affected by the uninitialized values.
631
+ */
632
+
633
+ if (_win[match + best_len] !== scan_end ||
634
+ _win[match + best_len - 1] !== scan_end1 ||
635
+ _win[match] !== _win[scan] ||
636
+ _win[++match] !== _win[scan + 1]) {
637
+ continue;
638
+ }
639
+
640
+ /* The check at best_len-1 can be removed because it will be made
641
+ * again later. (This heuristic is not always a win.)
642
+ * It is not necessary to compare scan[2] and match[2] since they
643
+ * are always equal when the other bytes match, given that
644
+ * the hash keys are equal and that HASH_BITS >= 8.
645
+ */
646
+ scan += 2;
647
+ match++;
648
+ // Assert(*scan == *match, "match[2]?");
649
+
650
+ /* We check for insufficient lookahead only every 8th comparison;
651
+ * the 256th check will be made at strstart+258.
652
+ */
653
+ do {
654
+ /*jshint noempty:false*/
655
+ } while (_win[++scan] === _win[++match] && _win[++scan] === _win[++match] &&
656
+ _win[++scan] === _win[++match] && _win[++scan] === _win[++match] &&
657
+ _win[++scan] === _win[++match] && _win[++scan] === _win[++match] &&
658
+ _win[++scan] === _win[++match] && _win[++scan] === _win[++match] &&
659
+ scan < strend);
660
+
661
+ // Assert(scan <= s->window+(unsigned)(s->window_size-1), "wild scan");
662
+
663
+ len = MAX_MATCH - (strend - scan);
664
+ scan = strend - MAX_MATCH;
665
+
666
+ if (len > best_len) {
667
+ s.match_start = cur_match;
668
+ best_len = len;
669
+ if (len >= nice_match) {
670
+ break;
671
+ }
672
+ scan_end1 = _win[scan + best_len - 1];
673
+ scan_end = _win[scan + best_len];
674
+ }
675
+ } while ((cur_match = prev[cur_match & wmask]) > limit && --chain_length !== 0);
676
+
677
+ if (best_len <= s.lookahead) {
678
+ return best_len;
679
+ }
680
+ return s.lookahead;
681
+ }
682
+
683
+
684
+ /* ===========================================================================
685
+ * Fill the window when the lookahead becomes insufficient.
686
+ * Updates strstart and lookahead.
687
+ *
688
+ * IN assertion: lookahead < MIN_LOOKAHEAD
689
+ * OUT assertions: strstart <= window_size-MIN_LOOKAHEAD
690
+ * At least one byte has been read, or avail_in == 0; reads are
691
+ * performed for at least two bytes (required for the zip translate_eol
692
+ * option -- not supported here).
693
+ */
694
+ function fill_window(s) {
695
+ var _w_size = s.w_size;
696
+ var p, n, m, more, str;
697
+
698
+ //Assert(s->lookahead < MIN_LOOKAHEAD, "already enough lookahead");
699
+
700
+ do {
701
+ more = s.window_size - s.lookahead - s.strstart;
702
+
703
+ // JS ints have 32 bit, block below not needed
704
+ /* Deal with !@#$% 64K limit: */
705
+ //if (sizeof(int) <= 2) {
706
+ // if (more == 0 && s->strstart == 0 && s->lookahead == 0) {
707
+ // more = wsize;
708
+ //
709
+ // } else if (more == (unsigned)(-1)) {
710
+ // /* Very unlikely, but possible on 16 bit machine if
711
+ // * strstart == 0 && lookahead == 1 (input done a byte at time)
712
+ // */
713
+ // more--;
714
+ // }
715
+ //}
716
+
717
+
718
+ /* If the window is almost full and there is insufficient lookahead,
719
+ * move the upper half to the lower one to make room in the upper half.
720
+ */
721
+ if (s.strstart >= _w_size + (_w_size - MIN_LOOKAHEAD)) {
722
+
723
+ utils.arraySet(s.window, s.window, _w_size, _w_size, 0);
724
+ s.match_start -= _w_size;
725
+ s.strstart -= _w_size;
726
+ /* we now have strstart >= MAX_DIST */
727
+ s.block_start -= _w_size;
728
+
729
+ /* Slide the hash table (could be avoided with 32 bit values
730
+ at the expense of memory usage). We slide even when level == 0
731
+ to keep the hash table consistent if we switch back to level > 0
732
+ later. (Using level 0 permanently is not an optimal usage of
733
+ zlib, so we don't care about this pathological case.)
734
+ */
735
+
736
+ n = s.hash_size;
737
+ p = n;
738
+ do {
739
+ m = s.head[--p];
740
+ s.head[p] = (m >= _w_size ? m - _w_size : 0);
741
+ } while (--n);
742
+
743
+ n = _w_size;
744
+ p = n;
745
+ do {
746
+ m = s.prev[--p];
747
+ s.prev[p] = (m >= _w_size ? m - _w_size : 0);
748
+ /* If n is not on any hash chain, prev[n] is garbage but
749
+ * its value will never be used.
750
+ */
751
+ } while (--n);
752
+
753
+ more += _w_size;
754
+ }
755
+ if (s.strm.avail_in === 0) {
756
+ break;
757
+ }
758
+
759
+ /* If there was no sliding:
760
+ * strstart <= WSIZE+MAX_DIST-1 && lookahead <= MIN_LOOKAHEAD - 1 &&
761
+ * more == window_size - lookahead - strstart
762
+ * => more >= window_size - (MIN_LOOKAHEAD-1 + WSIZE + MAX_DIST-1)
763
+ * => more >= window_size - 2*WSIZE + 2
764
+ * In the BIG_MEM or MMAP case (not yet supported),
765
+ * window_size == input_size + MIN_LOOKAHEAD &&
766
+ * strstart + s->lookahead <= input_size => more >= MIN_LOOKAHEAD.
767
+ * Otherwise, window_size == 2*WSIZE so more >= 2.
768
+ * If there was sliding, more >= WSIZE. So in all cases, more >= 2.
769
+ */
770
+ //Assert(more >= 2, "more < 2");
771
+ n = read_buf(s.strm, s.window, s.strstart + s.lookahead, more);
772
+ s.lookahead += n;
773
+
774
+ /* Initialize the hash value now that we have some input: */
775
+ if (s.lookahead + s.insert >= MIN_MATCH) {
776
+ str = s.strstart - s.insert;
777
+ s.ins_h = s.window[str];
778
+
779
+ /* UPDATE_HASH(s, s->ins_h, s->window[str + 1]); */
780
+ s.ins_h = ((s.ins_h << s.hash_shift) ^ s.window[str + 1]) & s.hash_mask;
781
+ //#if MIN_MATCH != 3
782
+ // Call update_hash() MIN_MATCH-3 more times
783
+ //#endif
784
+ while (s.insert) {
785
+ /* UPDATE_HASH(s, s->ins_h, s->window[str + MIN_MATCH-1]); */
786
+ s.ins_h = ((s.ins_h << s.hash_shift) ^ s.window[str + MIN_MATCH - 1]) & s.hash_mask;
787
+
788
+ s.prev[str & s.w_mask] = s.head[s.ins_h];
789
+ s.head[s.ins_h] = str;
790
+ str++;
791
+ s.insert--;
792
+ if (s.lookahead + s.insert < MIN_MATCH) {
793
+ break;
794
+ }
795
+ }
796
+ }
797
+ /* If the whole input has less than MIN_MATCH bytes, ins_h is garbage,
798
+ * but this is not important since only literal bytes will be emitted.
799
+ */
800
+
801
+ } while (s.lookahead < MIN_LOOKAHEAD && s.strm.avail_in !== 0);
802
+
803
+ /* If the WIN_INIT bytes after the end of the current data have never been
804
+ * written, then zero those bytes in order to avoid memory check reports of
805
+ * the use of uninitialized (or uninitialised as Julian writes) bytes by
806
+ * the longest match routines. Update the high water mark for the next
807
+ * time through here. WIN_INIT is set to MAX_MATCH since the longest match
808
+ * routines allow scanning to strstart + MAX_MATCH, ignoring lookahead.
809
+ */
810
+ // if (s.high_water < s.window_size) {
811
+ // var curr = s.strstart + s.lookahead;
812
+ // var init = 0;
813
+ //
814
+ // if (s.high_water < curr) {
815
+ // /* Previous high water mark below current data -- zero WIN_INIT
816
+ // * bytes or up to end of window, whichever is less.
817
+ // */
818
+ // init = s.window_size - curr;
819
+ // if (init > WIN_INIT)
820
+ // init = WIN_INIT;
821
+ // zmemzero(s->window + curr, (unsigned)init);
822
+ // s->high_water = curr + init;
823
+ // }
824
+ // else if (s->high_water < (ulg)curr + WIN_INIT) {
825
+ // /* High water mark at or above current data, but below current data
826
+ // * plus WIN_INIT -- zero out to current data plus WIN_INIT, or up
827
+ // * to end of window, whichever is less.
828
+ // */
829
+ // init = (ulg)curr + WIN_INIT - s->high_water;
830
+ // if (init > s->window_size - s->high_water)
831
+ // init = s->window_size - s->high_water;
832
+ // zmemzero(s->window + s->high_water, (unsigned)init);
833
+ // s->high_water += init;
834
+ // }
835
+ // }
836
+ //
837
+ // Assert((ulg)s->strstart <= s->window_size - MIN_LOOKAHEAD,
838
+ // "not enough room for search");
839
+ }
840
+
841
+ /* ===========================================================================
842
+ * Copy without compression as much as possible from the input stream, return
843
+ * the current block state.
844
+ * This function does not insert new strings in the dictionary since
845
+ * uncompressible data is probably not useful. This function is used
846
+ * only for the level=0 compression option.
847
+ * NOTE: this function should be optimized to avoid extra copying from
848
+ * window to pending_buf.
849
+ */
850
+ function deflate_stored(s, flush) {
851
+ /* Stored blocks are limited to 0xffff bytes, pending_buf is limited
852
+ * to pending_buf_size, and each stored block has a 5 byte header:
853
+ */
854
+ var max_block_size = 0xffff;
855
+
856
+ if (max_block_size > s.pending_buf_size - 5) {
857
+ max_block_size = s.pending_buf_size - 5;
858
+ }
859
+
860
+ /* Copy as much as possible from input to output: */
861
+ for (;;) {
862
+ /* Fill the window as much as possible: */
863
+ if (s.lookahead <= 1) {
864
+
865
+ //Assert(s->strstart < s->w_size+MAX_DIST(s) ||
866
+ // s->block_start >= (long)s->w_size, "slide too late");
867
+ // if (!(s.strstart < s.w_size + (s.w_size - MIN_LOOKAHEAD) ||
868
+ // s.block_start >= s.w_size)) {
869
+ // throw new Error("slide too late");
870
+ // }
871
+
872
+ fill_window(s);
873
+ if (s.lookahead === 0 && flush === Z_NO_FLUSH) {
874
+ return BS_NEED_MORE;
875
+ }
876
+
877
+ if (s.lookahead === 0) {
878
+ break;
879
+ }
880
+ /* flush the current block */
881
+ }
882
+ //Assert(s->block_start >= 0L, "block gone");
883
+ // if (s.block_start < 0) throw new Error("block gone");
884
+
885
+ s.strstart += s.lookahead;
886
+ s.lookahead = 0;
887
+
888
+ /* Emit a stored block if pending_buf will be full: */
889
+ var max_start = s.block_start + max_block_size;
890
+
891
+ if (s.strstart === 0 || s.strstart >= max_start) {
892
+ /* strstart == 0 is possible when wraparound on 16-bit machine */
893
+ s.lookahead = s.strstart - max_start;
894
+ s.strstart = max_start;
895
+ /*** FLUSH_BLOCK(s, 0); ***/
896
+ flush_block_only(s, false);
897
+ if (s.strm.avail_out === 0) {
898
+ return BS_NEED_MORE;
899
+ }
900
+ /***/
901
+
902
+
903
+ }
904
+ /* Flush if we may have to slide, otherwise block_start may become
905
+ * negative and the data will be gone:
906
+ */
907
+ if (s.strstart - s.block_start >= (s.w_size - MIN_LOOKAHEAD)) {
908
+ /*** FLUSH_BLOCK(s, 0); ***/
909
+ flush_block_only(s, false);
910
+ if (s.strm.avail_out === 0) {
911
+ return BS_NEED_MORE;
912
+ }
913
+ /***/
914
+ }
915
+ }
916
+
917
+ s.insert = 0;
918
+
919
+ if (flush === Z_FINISH) {
920
+ /*** FLUSH_BLOCK(s, 1); ***/
921
+ flush_block_only(s, true);
922
+ if (s.strm.avail_out === 0) {
923
+ return BS_FINISH_STARTED;
924
+ }
925
+ /***/
926
+ return BS_FINISH_DONE;
927
+ }
928
+
929
+ if (s.strstart > s.block_start) {
930
+ /*** FLUSH_BLOCK(s, 0); ***/
931
+ flush_block_only(s, false);
932
+ if (s.strm.avail_out === 0) {
933
+ return BS_NEED_MORE;
934
+ }
935
+ /***/
936
+ }
937
+
938
+ return BS_NEED_MORE;
939
+ }
940
+
941
+ /* ===========================================================================
942
+ * Compress as much as possible from the input stream, return the current
943
+ * block state.
944
+ * This function does not perform lazy evaluation of matches and inserts
945
+ * new strings in the dictionary only for unmatched strings or for short
946
+ * matches. It is used only for the fast compression options.
947
+ */
948
+ function deflate_fast(s, flush) {
949
+ var hash_head; /* head of the hash chain */
950
+ var bflush; /* set if current block must be flushed */
951
+
952
+ for (;;) {
953
+ /* Make sure that we always have enough lookahead, except
954
+ * at the end of the input file. We need MAX_MATCH bytes
955
+ * for the next match, plus MIN_MATCH bytes to insert the
956
+ * string following the next match.
957
+ */
958
+ if (s.lookahead < MIN_LOOKAHEAD) {
959
+ fill_window(s);
960
+ if (s.lookahead < MIN_LOOKAHEAD && flush === Z_NO_FLUSH) {
961
+ return BS_NEED_MORE;
962
+ }
963
+ if (s.lookahead === 0) {
964
+ break; /* flush the current block */
965
+ }
966
+ }
967
+
968
+ /* Insert the string window[strstart .. strstart+2] in the
969
+ * dictionary, and set hash_head to the head of the hash chain:
970
+ */
971
+ hash_head = 0/*NIL*/;
972
+ if (s.lookahead >= MIN_MATCH) {
973
+ /*** INSERT_STRING(s, s.strstart, hash_head); ***/
974
+ s.ins_h = ((s.ins_h << s.hash_shift) ^ s.window[s.strstart + MIN_MATCH - 1]) & s.hash_mask;
975
+ hash_head = s.prev[s.strstart & s.w_mask] = s.head[s.ins_h];
976
+ s.head[s.ins_h] = s.strstart;
977
+ /***/
978
+ }
979
+
980
+ /* Find the longest match, discarding those <= prev_length.
981
+ * At this point we have always match_length < MIN_MATCH
982
+ */
983
+ if (hash_head !== 0/*NIL*/ && ((s.strstart - hash_head) <= (s.w_size - MIN_LOOKAHEAD))) {
984
+ /* To simplify the code, we prevent matches with the string
985
+ * of window index 0 (in particular we have to avoid a match
986
+ * of the string with itself at the start of the input file).
987
+ */
988
+ s.match_length = longest_match(s, hash_head);
989
+ /* longest_match() sets match_start */
990
+ }
991
+ if (s.match_length >= MIN_MATCH) {
992
+ // check_match(s, s.strstart, s.match_start, s.match_length); // for debug only
993
+
994
+ /*** _tr_tally_dist(s, s.strstart - s.match_start,
995
+ s.match_length - MIN_MATCH, bflush); ***/
996
+ bflush = trees._tr_tally(s, s.strstart - s.match_start, s.match_length - MIN_MATCH);
997
+
998
+ s.lookahead -= s.match_length;
999
+
1000
+ /* Insert new strings in the hash table only if the match length
1001
+ * is not too large. This saves time but degrades compression.
1002
+ */
1003
+ if (s.match_length <= s.max_lazy_match/*max_insert_length*/ && s.lookahead >= MIN_MATCH) {
1004
+ s.match_length--; /* string at strstart already in table */
1005
+ do {
1006
+ s.strstart++;
1007
+ /*** INSERT_STRING(s, s.strstart, hash_head); ***/
1008
+ s.ins_h = ((s.ins_h << s.hash_shift) ^ s.window[s.strstart + MIN_MATCH - 1]) & s.hash_mask;
1009
+ hash_head = s.prev[s.strstart & s.w_mask] = s.head[s.ins_h];
1010
+ s.head[s.ins_h] = s.strstart;
1011
+ /***/
1012
+ /* strstart never exceeds WSIZE-MAX_MATCH, so there are
1013
+ * always MIN_MATCH bytes ahead.
1014
+ */
1015
+ } while (--s.match_length !== 0);
1016
+ s.strstart++;
1017
+ } else
1018
+ {
1019
+ s.strstart += s.match_length;
1020
+ s.match_length = 0;
1021
+ s.ins_h = s.window[s.strstart];
1022
+ /* UPDATE_HASH(s, s.ins_h, s.window[s.strstart+1]); */
1023
+ s.ins_h = ((s.ins_h << s.hash_shift) ^ s.window[s.strstart + 1]) & s.hash_mask;
1024
+
1025
+ //#if MIN_MATCH != 3
1026
+ // Call UPDATE_HASH() MIN_MATCH-3 more times
1027
+ //#endif
1028
+ /* If lookahead < MIN_MATCH, ins_h is garbage, but it does not
1029
+ * matter since it will be recomputed at next deflate call.
1030
+ */
1031
+ }
1032
+ } else {
1033
+ /* No match, output a literal byte */
1034
+ //Tracevv((stderr,"%c", s.window[s.strstart]));
1035
+ /*** _tr_tally_lit(s, s.window[s.strstart], bflush); ***/
1036
+ bflush = trees._tr_tally(s, 0, s.window[s.strstart]);
1037
+
1038
+ s.lookahead--;
1039
+ s.strstart++;
1040
+ }
1041
+ if (bflush) {
1042
+ /*** FLUSH_BLOCK(s, 0); ***/
1043
+ flush_block_only(s, false);
1044
+ if (s.strm.avail_out === 0) {
1045
+ return BS_NEED_MORE;
1046
+ }
1047
+ /***/
1048
+ }
1049
+ }
1050
+ s.insert = ((s.strstart < (MIN_MATCH - 1)) ? s.strstart : MIN_MATCH - 1);
1051
+ if (flush === Z_FINISH) {
1052
+ /*** FLUSH_BLOCK(s, 1); ***/
1053
+ flush_block_only(s, true);
1054
+ if (s.strm.avail_out === 0) {
1055
+ return BS_FINISH_STARTED;
1056
+ }
1057
+ /***/
1058
+ return BS_FINISH_DONE;
1059
+ }
1060
+ if (s.last_lit) {
1061
+ /*** FLUSH_BLOCK(s, 0); ***/
1062
+ flush_block_only(s, false);
1063
+ if (s.strm.avail_out === 0) {
1064
+ return BS_NEED_MORE;
1065
+ }
1066
+ /***/
1067
+ }
1068
+ return BS_BLOCK_DONE;
1069
+ }
1070
+
1071
+ /* ===========================================================================
1072
+ * Same as above, but achieves better compression. We use a lazy
1073
+ * evaluation for matches: a match is finally adopted only if there is
1074
+ * no better match at the next window position.
1075
+ */
1076
+ function deflate_slow(s, flush) {
1077
+ var hash_head; /* head of hash chain */
1078
+ var bflush; /* set if current block must be flushed */
1079
+
1080
+ var max_insert;
1081
+
1082
+ /* Process the input block. */
1083
+ for (;;) {
1084
+ /* Make sure that we always have enough lookahead, except
1085
+ * at the end of the input file. We need MAX_MATCH bytes
1086
+ * for the next match, plus MIN_MATCH bytes to insert the
1087
+ * string following the next match.
1088
+ */
1089
+ if (s.lookahead < MIN_LOOKAHEAD) {
1090
+ fill_window(s);
1091
+ if (s.lookahead < MIN_LOOKAHEAD && flush === Z_NO_FLUSH) {
1092
+ return BS_NEED_MORE;
1093
+ }
1094
+ if (s.lookahead === 0) { break; } /* flush the current block */
1095
+ }
1096
+
1097
+ /* Insert the string window[strstart .. strstart+2] in the
1098
+ * dictionary, and set hash_head to the head of the hash chain:
1099
+ */
1100
+ hash_head = 0/*NIL*/;
1101
+ if (s.lookahead >= MIN_MATCH) {
1102
+ /*** INSERT_STRING(s, s.strstart, hash_head); ***/
1103
+ s.ins_h = ((s.ins_h << s.hash_shift) ^ s.window[s.strstart + MIN_MATCH - 1]) & s.hash_mask;
1104
+ hash_head = s.prev[s.strstart & s.w_mask] = s.head[s.ins_h];
1105
+ s.head[s.ins_h] = s.strstart;
1106
+ /***/
1107
+ }
1108
+
1109
+ /* Find the longest match, discarding those <= prev_length.
1110
+ */
1111
+ s.prev_length = s.match_length;
1112
+ s.prev_match = s.match_start;
1113
+ s.match_length = MIN_MATCH - 1;
1114
+
1115
+ if (hash_head !== 0/*NIL*/ && s.prev_length < s.max_lazy_match &&
1116
+ s.strstart - hash_head <= (s.w_size - MIN_LOOKAHEAD)/*MAX_DIST(s)*/) {
1117
+ /* To simplify the code, we prevent matches with the string
1118
+ * of window index 0 (in particular we have to avoid a match
1119
+ * of the string with itself at the start of the input file).
1120
+ */
1121
+ s.match_length = longest_match(s, hash_head);
1122
+ /* longest_match() sets match_start */
1123
+
1124
+ if (s.match_length <= 5 &&
1125
+ (s.strategy === Z_FILTERED || (s.match_length === MIN_MATCH && s.strstart - s.match_start > 4096/*TOO_FAR*/))) {
1126
+
1127
+ /* If prev_match is also MIN_MATCH, match_start is garbage
1128
+ * but we will ignore the current match anyway.
1129
+ */
1130
+ s.match_length = MIN_MATCH - 1;
1131
+ }
1132
+ }
1133
+ /* If there was a match at the previous step and the current
1134
+ * match is not better, output the previous match:
1135
+ */
1136
+ if (s.prev_length >= MIN_MATCH && s.match_length <= s.prev_length) {
1137
+ max_insert = s.strstart + s.lookahead - MIN_MATCH;
1138
+ /* Do not insert strings in hash table beyond this. */
1139
+
1140
+ //check_match(s, s.strstart-1, s.prev_match, s.prev_length);
1141
+
1142
+ /***_tr_tally_dist(s, s.strstart - 1 - s.prev_match,
1143
+ s.prev_length - MIN_MATCH, bflush);***/
1144
+ bflush = trees._tr_tally(s, s.strstart - 1 - s.prev_match, s.prev_length - MIN_MATCH);
1145
+ /* Insert in hash table all strings up to the end of the match.
1146
+ * strstart-1 and strstart are already inserted. If there is not
1147
+ * enough lookahead, the last two strings are not inserted in
1148
+ * the hash table.
1149
+ */
1150
+ s.lookahead -= s.prev_length - 1;
1151
+ s.prev_length -= 2;
1152
+ do {
1153
+ if (++s.strstart <= max_insert) {
1154
+ /*** INSERT_STRING(s, s.strstart, hash_head); ***/
1155
+ s.ins_h = ((s.ins_h << s.hash_shift) ^ s.window[s.strstart + MIN_MATCH - 1]) & s.hash_mask;
1156
+ hash_head = s.prev[s.strstart & s.w_mask] = s.head[s.ins_h];
1157
+ s.head[s.ins_h] = s.strstart;
1158
+ /***/
1159
+ }
1160
+ } while (--s.prev_length !== 0);
1161
+ s.match_available = 0;
1162
+ s.match_length = MIN_MATCH - 1;
1163
+ s.strstart++;
1164
+
1165
+ if (bflush) {
1166
+ /*** FLUSH_BLOCK(s, 0); ***/
1167
+ flush_block_only(s, false);
1168
+ if (s.strm.avail_out === 0) {
1169
+ return BS_NEED_MORE;
1170
+ }
1171
+ /***/
1172
+ }
1173
+
1174
+ } else if (s.match_available) {
1175
+ /* If there was no match at the previous position, output a
1176
+ * single literal. If there was a match but the current match
1177
+ * is longer, truncate the previous match to a single literal.
1178
+ */
1179
+ //Tracevv((stderr,"%c", s->window[s->strstart-1]));
1180
+ /*** _tr_tally_lit(s, s.window[s.strstart-1], bflush); ***/
1181
+ bflush = trees._tr_tally(s, 0, s.window[s.strstart - 1]);
1182
+
1183
+ if (bflush) {
1184
+ /*** FLUSH_BLOCK_ONLY(s, 0) ***/
1185
+ flush_block_only(s, false);
1186
+ /***/
1187
+ }
1188
+ s.strstart++;
1189
+ s.lookahead--;
1190
+ if (s.strm.avail_out === 0) {
1191
+ return BS_NEED_MORE;
1192
+ }
1193
+ } else {
1194
+ /* There is no previous match to compare with, wait for
1195
+ * the next step to decide.
1196
+ */
1197
+ s.match_available = 1;
1198
+ s.strstart++;
1199
+ s.lookahead--;
1200
+ }
1201
+ }
1202
+ //Assert (flush != Z_NO_FLUSH, "no flush?");
1203
+ if (s.match_available) {
1204
+ //Tracevv((stderr,"%c", s->window[s->strstart-1]));
1205
+ /*** _tr_tally_lit(s, s.window[s.strstart-1], bflush); ***/
1206
+ bflush = trees._tr_tally(s, 0, s.window[s.strstart - 1]);
1207
+
1208
+ s.match_available = 0;
1209
+ }
1210
+ s.insert = s.strstart < MIN_MATCH - 1 ? s.strstart : MIN_MATCH - 1;
1211
+ if (flush === Z_FINISH) {
1212
+ /*** FLUSH_BLOCK(s, 1); ***/
1213
+ flush_block_only(s, true);
1214
+ if (s.strm.avail_out === 0) {
1215
+ return BS_FINISH_STARTED;
1216
+ }
1217
+ /***/
1218
+ return BS_FINISH_DONE;
1219
+ }
1220
+ if (s.last_lit) {
1221
+ /*** FLUSH_BLOCK(s, 0); ***/
1222
+ flush_block_only(s, false);
1223
+ if (s.strm.avail_out === 0) {
1224
+ return BS_NEED_MORE;
1225
+ }
1226
+ /***/
1227
+ }
1228
+
1229
+ return BS_BLOCK_DONE;
1230
+ }
1231
+
1232
+
1233
+ /* ===========================================================================
1234
+ * For Z_RLE, simply look for runs of bytes, generate matches only of distance
1235
+ * one. Do not maintain a hash table. (It will be regenerated if this run of
1236
+ * deflate switches away from Z_RLE.)
1237
+ */
1238
+ function deflate_rle(s, flush) {
1239
+ var bflush; /* set if current block must be flushed */
1240
+ var prev; /* byte at distance one to match */
1241
+ var scan, strend; /* scan goes up to strend for length of run */
1242
+
1243
+ var _win = s.window;
1244
+
1245
+ for (;;) {
1246
+ /* Make sure that we always have enough lookahead, except
1247
+ * at the end of the input file. We need MAX_MATCH bytes
1248
+ * for the longest run, plus one for the unrolled loop.
1249
+ */
1250
+ if (s.lookahead <= MAX_MATCH) {
1251
+ fill_window(s);
1252
+ if (s.lookahead <= MAX_MATCH && flush === Z_NO_FLUSH) {
1253
+ return BS_NEED_MORE;
1254
+ }
1255
+ if (s.lookahead === 0) { break; } /* flush the current block */
1256
+ }
1257
+
1258
+ /* See how many times the previous byte repeats */
1259
+ s.match_length = 0;
1260
+ if (s.lookahead >= MIN_MATCH && s.strstart > 0) {
1261
+ scan = s.strstart - 1;
1262
+ prev = _win[scan];
1263
+ if (prev === _win[++scan] && prev === _win[++scan] && prev === _win[++scan]) {
1264
+ strend = s.strstart + MAX_MATCH;
1265
+ do {
1266
+ /*jshint noempty:false*/
1267
+ } while (prev === _win[++scan] && prev === _win[++scan] &&
1268
+ prev === _win[++scan] && prev === _win[++scan] &&
1269
+ prev === _win[++scan] && prev === _win[++scan] &&
1270
+ prev === _win[++scan] && prev === _win[++scan] &&
1271
+ scan < strend);
1272
+ s.match_length = MAX_MATCH - (strend - scan);
1273
+ if (s.match_length > s.lookahead) {
1274
+ s.match_length = s.lookahead;
1275
+ }
1276
+ }
1277
+ //Assert(scan <= s->window+(uInt)(s->window_size-1), "wild scan");
1278
+ }
1279
+
1280
+ /* Emit match if have run of MIN_MATCH or longer, else emit literal */
1281
+ if (s.match_length >= MIN_MATCH) {
1282
+ //check_match(s, s.strstart, s.strstart - 1, s.match_length);
1283
+
1284
+ /*** _tr_tally_dist(s, 1, s.match_length - MIN_MATCH, bflush); ***/
1285
+ bflush = trees._tr_tally(s, 1, s.match_length - MIN_MATCH);
1286
+
1287
+ s.lookahead -= s.match_length;
1288
+ s.strstart += s.match_length;
1289
+ s.match_length = 0;
1290
+ } else {
1291
+ /* No match, output a literal byte */
1292
+ //Tracevv((stderr,"%c", s->window[s->strstart]));
1293
+ /*** _tr_tally_lit(s, s.window[s.strstart], bflush); ***/
1294
+ bflush = trees._tr_tally(s, 0, s.window[s.strstart]);
1295
+
1296
+ s.lookahead--;
1297
+ s.strstart++;
1298
+ }
1299
+ if (bflush) {
1300
+ /*** FLUSH_BLOCK(s, 0); ***/
1301
+ flush_block_only(s, false);
1302
+ if (s.strm.avail_out === 0) {
1303
+ return BS_NEED_MORE;
1304
+ }
1305
+ /***/
1306
+ }
1307
+ }
1308
+ s.insert = 0;
1309
+ if (flush === Z_FINISH) {
1310
+ /*** FLUSH_BLOCK(s, 1); ***/
1311
+ flush_block_only(s, true);
1312
+ if (s.strm.avail_out === 0) {
1313
+ return BS_FINISH_STARTED;
1314
+ }
1315
+ /***/
1316
+ return BS_FINISH_DONE;
1317
+ }
1318
+ if (s.last_lit) {
1319
+ /*** FLUSH_BLOCK(s, 0); ***/
1320
+ flush_block_only(s, false);
1321
+ if (s.strm.avail_out === 0) {
1322
+ return BS_NEED_MORE;
1323
+ }
1324
+ /***/
1325
+ }
1326
+ return BS_BLOCK_DONE;
1327
+ }
1328
+
1329
+ /* ===========================================================================
1330
+ * For Z_HUFFMAN_ONLY, do not look for matches. Do not maintain a hash table.
1331
+ * (It will be regenerated if this run of deflate switches away from Huffman.)
1332
+ */
1333
+ function deflate_huff(s, flush) {
1334
+ var bflush; /* set if current block must be flushed */
1335
+
1336
+ for (;;) {
1337
+ /* Make sure that we have a literal to write. */
1338
+ if (s.lookahead === 0) {
1339
+ fill_window(s);
1340
+ if (s.lookahead === 0) {
1341
+ if (flush === Z_NO_FLUSH) {
1342
+ return BS_NEED_MORE;
1343
+ }
1344
+ break; /* flush the current block */
1345
+ }
1346
+ }
1347
+
1348
+ /* Output a literal byte */
1349
+ s.match_length = 0;
1350
+ //Tracevv((stderr,"%c", s->window[s->strstart]));
1351
+ /*** _tr_tally_lit(s, s.window[s.strstart], bflush); ***/
1352
+ bflush = trees._tr_tally(s, 0, s.window[s.strstart]);
1353
+ s.lookahead--;
1354
+ s.strstart++;
1355
+ if (bflush) {
1356
+ /*** FLUSH_BLOCK(s, 0); ***/
1357
+ flush_block_only(s, false);
1358
+ if (s.strm.avail_out === 0) {
1359
+ return BS_NEED_MORE;
1360
+ }
1361
+ /***/
1362
+ }
1363
+ }
1364
+ s.insert = 0;
1365
+ if (flush === Z_FINISH) {
1366
+ /*** FLUSH_BLOCK(s, 1); ***/
1367
+ flush_block_only(s, true);
1368
+ if (s.strm.avail_out === 0) {
1369
+ return BS_FINISH_STARTED;
1370
+ }
1371
+ /***/
1372
+ return BS_FINISH_DONE;
1373
+ }
1374
+ if (s.last_lit) {
1375
+ /*** FLUSH_BLOCK(s, 0); ***/
1376
+ flush_block_only(s, false);
1377
+ if (s.strm.avail_out === 0) {
1378
+ return BS_NEED_MORE;
1379
+ }
1380
+ /***/
1381
+ }
1382
+ return BS_BLOCK_DONE;
1383
+ }
1384
+
1385
+ /* Values for max_lazy_match, good_match and max_chain_length, depending on
1386
+ * the desired pack level (0..9). The values given below have been tuned to
1387
+ * exclude worst case performance for pathological files. Better values may be
1388
+ * found for specific files.
1389
+ */
1390
+ function Config(good_length, max_lazy, nice_length, max_chain, func) {
1391
+ this.good_length = good_length;
1392
+ this.max_lazy = max_lazy;
1393
+ this.nice_length = nice_length;
1394
+ this.max_chain = max_chain;
1395
+ this.func = func;
1396
+ }
1397
+
1398
+ var configuration_table;
1399
+
1400
+ configuration_table = [
1401
+ /* good lazy nice chain */
1402
+ new Config(0, 0, 0, 0, deflate_stored), /* 0 store only */
1403
+ new Config(4, 4, 8, 4, deflate_fast), /* 1 max speed, no lazy matches */
1404
+ new Config(4, 5, 16, 8, deflate_fast), /* 2 */
1405
+ new Config(4, 6, 32, 32, deflate_fast), /* 3 */
1406
+
1407
+ new Config(4, 4, 16, 16, deflate_slow), /* 4 lazy matches */
1408
+ new Config(8, 16, 32, 32, deflate_slow), /* 5 */
1409
+ new Config(8, 16, 128, 128, deflate_slow), /* 6 */
1410
+ new Config(8, 32, 128, 256, deflate_slow), /* 7 */
1411
+ new Config(32, 128, 258, 1024, deflate_slow), /* 8 */
1412
+ new Config(32, 258, 258, 4096, deflate_slow) /* 9 max compression */
1413
+ ];
1414
+
1415
+
1416
+ /* ===========================================================================
1417
+ * Initialize the "longest match" routines for a new zlib stream
1418
+ */
1419
+ function lm_init(s) {
1420
+ s.window_size = 2 * s.w_size;
1421
+
1422
+ /*** CLEAR_HASH(s); ***/
1423
+ zero(s.head); // Fill with NIL (= 0);
1424
+
1425
+ /* Set the default configuration parameters:
1426
+ */
1427
+ s.max_lazy_match = configuration_table[s.level].max_lazy;
1428
+ s.good_match = configuration_table[s.level].good_length;
1429
+ s.nice_match = configuration_table[s.level].nice_length;
1430
+ s.max_chain_length = configuration_table[s.level].max_chain;
1431
+
1432
+ s.strstart = 0;
1433
+ s.block_start = 0;
1434
+ s.lookahead = 0;
1435
+ s.insert = 0;
1436
+ s.match_length = s.prev_length = MIN_MATCH - 1;
1437
+ s.match_available = 0;
1438
+ s.ins_h = 0;
1439
+ }
1440
+
1441
+
1442
+ function DeflateState() {
1443
+ this.strm = null; /* pointer back to this zlib stream */
1444
+ this.status = 0; /* as the name implies */
1445
+ this.pending_buf = null; /* output still pending */
1446
+ this.pending_buf_size = 0; /* size of pending_buf */
1447
+ this.pending_out = 0; /* next pending byte to output to the stream */
1448
+ this.pending = 0; /* nb of bytes in the pending buffer */
1449
+ this.wrap = 0; /* bit 0 true for zlib, bit 1 true for gzip */
1450
+ this.gzhead = null; /* gzip header information to write */
1451
+ this.gzindex = 0; /* where in extra, name, or comment */
1452
+ this.method = Z_DEFLATED; /* can only be DEFLATED */
1453
+ this.last_flush = -1; /* value of flush param for previous deflate call */
1454
+
1455
+ this.w_size = 0; /* LZ77 window size (32K by default) */
1456
+ this.w_bits = 0; /* log2(w_size) (8..16) */
1457
+ this.w_mask = 0; /* w_size - 1 */
1458
+
1459
+ this.window = null;
1460
+ /* Sliding window. Input bytes are read into the second half of the window,
1461
+ * and move to the first half later to keep a dictionary of at least wSize
1462
+ * bytes. With this organization, matches are limited to a distance of
1463
+ * wSize-MAX_MATCH bytes, but this ensures that IO is always
1464
+ * performed with a length multiple of the block size.
1465
+ */
1466
+
1467
+ this.window_size = 0;
1468
+ /* Actual size of window: 2*wSize, except when the user input buffer
1469
+ * is directly used as sliding window.
1470
+ */
1471
+
1472
+ this.prev = null;
1473
+ /* Link to older string with same hash index. To limit the size of this
1474
+ * array to 64K, this link is maintained only for the last 32K strings.
1475
+ * An index in this array is thus a window index modulo 32K.
1476
+ */
1477
+
1478
+ this.head = null; /* Heads of the hash chains or NIL. */
1479
+
1480
+ this.ins_h = 0; /* hash index of string to be inserted */
1481
+ this.hash_size = 0; /* number of elements in hash table */
1482
+ this.hash_bits = 0; /* log2(hash_size) */
1483
+ this.hash_mask = 0; /* hash_size-1 */
1484
+
1485
+ this.hash_shift = 0;
1486
+ /* Number of bits by which ins_h must be shifted at each input
1487
+ * step. It must be such that after MIN_MATCH steps, the oldest
1488
+ * byte no longer takes part in the hash key, that is:
1489
+ * hash_shift * MIN_MATCH >= hash_bits
1490
+ */
1491
+
1492
+ this.block_start = 0;
1493
+ /* Window position at the beginning of the current output block. Gets
1494
+ * negative when the window is moved backwards.
1495
+ */
1496
+
1497
+ this.match_length = 0; /* length of best match */
1498
+ this.prev_match = 0; /* previous match */
1499
+ this.match_available = 0; /* set if previous match exists */
1500
+ this.strstart = 0; /* start of string to insert */
1501
+ this.match_start = 0; /* start of matching string */
1502
+ this.lookahead = 0; /* number of valid bytes ahead in window */
1503
+
1504
+ this.prev_length = 0;
1505
+ /* Length of the best match at previous step. Matches not greater than this
1506
+ * are discarded. This is used in the lazy match evaluation.
1507
+ */
1508
+
1509
+ this.max_chain_length = 0;
1510
+ /* To speed up deflation, hash chains are never searched beyond this
1511
+ * length. A higher limit improves compression ratio but degrades the
1512
+ * speed.
1513
+ */
1514
+
1515
+ this.max_lazy_match = 0;
1516
+ /* Attempt to find a better match only when the current match is strictly
1517
+ * smaller than this value. This mechanism is used only for compression
1518
+ * levels >= 4.
1519
+ */
1520
+ // That's alias to max_lazy_match, don't use directly
1521
+ //this.max_insert_length = 0;
1522
+ /* Insert new strings in the hash table only if the match length is not
1523
+ * greater than this length. This saves time but degrades compression.
1524
+ * max_insert_length is used only for compression levels <= 3.
1525
+ */
1526
+
1527
+ this.level = 0; /* compression level (1..9) */
1528
+ this.strategy = 0; /* favor or force Huffman coding*/
1529
+
1530
+ this.good_match = 0;
1531
+ /* Use a faster search when the previous match is longer than this */
1532
+
1533
+ this.nice_match = 0; /* Stop searching when current match exceeds this */
1534
+
1535
+ /* used by trees.c: */
1536
+
1537
+ /* Didn't use ct_data typedef below to suppress compiler warning */
1538
+
1539
+ // struct ct_data_s dyn_ltree[HEAP_SIZE]; /* literal and length tree */
1540
+ // struct ct_data_s dyn_dtree[2*D_CODES+1]; /* distance tree */
1541
+ // struct ct_data_s bl_tree[2*BL_CODES+1]; /* Huffman tree for bit lengths */
1542
+
1543
+ // Use flat array of DOUBLE size, with interleaved fata,
1544
+ // because JS does not support effective
1545
+ this.dyn_ltree = new utils.Buf16(HEAP_SIZE * 2);
1546
+ this.dyn_dtree = new utils.Buf16((2 * D_CODES + 1) * 2);
1547
+ this.bl_tree = new utils.Buf16((2 * BL_CODES + 1) * 2);
1548
+ zero(this.dyn_ltree);
1549
+ zero(this.dyn_dtree);
1550
+ zero(this.bl_tree);
1551
+
1552
+ this.l_desc = null; /* desc. for literal tree */
1553
+ this.d_desc = null; /* desc. for distance tree */
1554
+ this.bl_desc = null; /* desc. for bit length tree */
1555
+
1556
+ //ush bl_count[MAX_BITS+1];
1557
+ this.bl_count = new utils.Buf16(MAX_BITS + 1);
1558
+ /* number of codes at each bit length for an optimal tree */
1559
+
1560
+ //int heap[2*L_CODES+1]; /* heap used to build the Huffman trees */
1561
+ this.heap = new utils.Buf16(2 * L_CODES + 1); /* heap used to build the Huffman trees */
1562
+ zero(this.heap);
1563
+
1564
+ this.heap_len = 0; /* number of elements in the heap */
1565
+ this.heap_max = 0; /* element of largest frequency */
1566
+ /* The sons of heap[n] are heap[2*n] and heap[2*n+1]. heap[0] is not used.
1567
+ * The same heap array is used to build all trees.
1568
+ */
1569
+
1570
+ this.depth = new utils.Buf16(2 * L_CODES + 1); //uch depth[2*L_CODES+1];
1571
+ zero(this.depth);
1572
+ /* Depth of each subtree used as tie breaker for trees of equal frequency
1573
+ */
1574
+
1575
+ this.l_buf = 0; /* buffer index for literals or lengths */
1576
+
1577
+ this.lit_bufsize = 0;
1578
+ /* Size of match buffer for literals/lengths. There are 4 reasons for
1579
+ * limiting lit_bufsize to 64K:
1580
+ * - frequencies can be kept in 16 bit counters
1581
+ * - if compression is not successful for the first block, all input
1582
+ * data is still in the window so we can still emit a stored block even
1583
+ * when input comes from standard input. (This can also be done for
1584
+ * all blocks if lit_bufsize is not greater than 32K.)
1585
+ * - if compression is not successful for a file smaller than 64K, we can
1586
+ * even emit a stored file instead of a stored block (saving 5 bytes).
1587
+ * This is applicable only for zip (not gzip or zlib).
1588
+ * - creating new Huffman trees less frequently may not provide fast
1589
+ * adaptation to changes in the input data statistics. (Take for
1590
+ * example a binary file with poorly compressible code followed by
1591
+ * a highly compressible string table.) Smaller buffer sizes give
1592
+ * fast adaptation but have of course the overhead of transmitting
1593
+ * trees more frequently.
1594
+ * - I can't count above 4
1595
+ */
1596
+
1597
+ this.last_lit = 0; /* running index in l_buf */
1598
+
1599
+ this.d_buf = 0;
1600
+ /* Buffer index for distances. To simplify the code, d_buf and l_buf have
1601
+ * the same number of elements. To use different lengths, an extra flag
1602
+ * array would be necessary.
1603
+ */
1604
+
1605
+ this.opt_len = 0; /* bit length of current block with optimal trees */
1606
+ this.static_len = 0; /* bit length of current block with static trees */
1607
+ this.matches = 0; /* number of string matches in current block */
1608
+ this.insert = 0; /* bytes at end of window left to insert */
1609
+
1610
+
1611
+ this.bi_buf = 0;
1612
+ /* Output buffer. bits are inserted starting at the bottom (least
1613
+ * significant bits).
1614
+ */
1615
+ this.bi_valid = 0;
1616
+ /* Number of valid bits in bi_buf. All bits above the last valid bit
1617
+ * are always zero.
1618
+ */
1619
+
1620
+ // Used for window memory init. We safely ignore it for JS. That makes
1621
+ // sense only for pointers and memory check tools.
1622
+ //this.high_water = 0;
1623
+ /* High water mark offset in window for initialized bytes -- bytes above
1624
+ * this are set to zero in order to avoid memory check warnings when
1625
+ * longest match routines access bytes past the input. This is then
1626
+ * updated to the new high water mark.
1627
+ */
1628
+ }
1629
+
1630
+
1631
+ function deflateResetKeep(strm) {
1632
+ var s;
1633
+
1634
+ if (!strm || !strm.state) {
1635
+ return err(strm, Z_STREAM_ERROR);
1636
+ }
1637
+
1638
+ strm.total_in = strm.total_out = 0;
1639
+ strm.data_type = Z_UNKNOWN;
1640
+
1641
+ s = strm.state;
1642
+ s.pending = 0;
1643
+ s.pending_out = 0;
1644
+
1645
+ if (s.wrap < 0) {
1646
+ s.wrap = -s.wrap;
1647
+ /* was made negative by deflate(..., Z_FINISH); */
1648
+ }
1649
+ s.status = (s.wrap ? INIT_STATE : BUSY_STATE);
1650
+ strm.adler = (s.wrap === 2) ?
1651
+ 0 // crc32(0, Z_NULL, 0)
1652
+ :
1653
+ 1; // adler32(0, Z_NULL, 0)
1654
+ s.last_flush = Z_NO_FLUSH;
1655
+ trees._tr_init(s);
1656
+ return Z_OK;
1657
+ }
1658
+
1659
+
1660
+ function deflateReset(strm) {
1661
+ var ret = deflateResetKeep(strm);
1662
+ if (ret === Z_OK) {
1663
+ lm_init(strm.state);
1664
+ }
1665
+ return ret;
1666
+ }
1667
+
1668
+
1669
+ function deflateSetHeader(strm, head) {
1670
+ if (!strm || !strm.state) { return Z_STREAM_ERROR; }
1671
+ if (strm.state.wrap !== 2) { return Z_STREAM_ERROR; }
1672
+ strm.state.gzhead = head;
1673
+ return Z_OK;
1674
+ }
1675
+
1676
+
1677
+ function deflateInit2(strm, level, method, windowBits, memLevel, strategy) {
1678
+ if (!strm) { // === Z_NULL
1679
+ return Z_STREAM_ERROR;
1680
+ }
1681
+ var wrap = 1;
1682
+
1683
+ if (level === Z_DEFAULT_COMPRESSION) {
1684
+ level = 6;
1685
+ }
1686
+
1687
+ if (windowBits < 0) { /* suppress zlib wrapper */
1688
+ wrap = 0;
1689
+ windowBits = -windowBits;
1690
+ }
1691
+
1692
+ else if (windowBits > 15) {
1693
+ wrap = 2; /* write gzip wrapper instead */
1694
+ windowBits -= 16;
1695
+ }
1696
+
1697
+
1698
+ if (memLevel < 1 || memLevel > MAX_MEM_LEVEL || method !== Z_DEFLATED ||
1699
+ windowBits < 8 || windowBits > 15 || level < 0 || level > 9 ||
1700
+ strategy < 0 || strategy > Z_FIXED) {
1701
+ return err(strm, Z_STREAM_ERROR);
1702
+ }
1703
+
1704
+
1705
+ if (windowBits === 8) {
1706
+ windowBits = 9;
1707
+ }
1708
+ /* until 256-byte window bug fixed */
1709
+
1710
+ var s = new DeflateState();
1711
+
1712
+ strm.state = s;
1713
+ s.strm = strm;
1714
+
1715
+ s.wrap = wrap;
1716
+ s.gzhead = null;
1717
+ s.w_bits = windowBits;
1718
+ s.w_size = 1 << s.w_bits;
1719
+ s.w_mask = s.w_size - 1;
1720
+
1721
+ s.hash_bits = memLevel + 7;
1722
+ s.hash_size = 1 << s.hash_bits;
1723
+ s.hash_mask = s.hash_size - 1;
1724
+ s.hash_shift = ~~((s.hash_bits + MIN_MATCH - 1) / MIN_MATCH);
1725
+
1726
+ s.window = new utils.Buf8(s.w_size * 2);
1727
+ s.head = new utils.Buf16(s.hash_size);
1728
+ s.prev = new utils.Buf16(s.w_size);
1729
+
1730
+ // Don't need mem init magic for JS.
1731
+ //s.high_water = 0; /* nothing written to s->window yet */
1732
+
1733
+ s.lit_bufsize = 1 << (memLevel + 6); /* 16K elements by default */
1734
+
1735
+ s.pending_buf_size = s.lit_bufsize * 4;
1736
+
1737
+ //overlay = (ushf *) ZALLOC(strm, s->lit_bufsize, sizeof(ush)+2);
1738
+ //s->pending_buf = (uchf *) overlay;
1739
+ s.pending_buf = new utils.Buf8(s.pending_buf_size);
1740
+
1741
+ // It is offset from `s.pending_buf` (size is `s.lit_bufsize * 2`)
1742
+ //s->d_buf = overlay + s->lit_bufsize/sizeof(ush);
1743
+ s.d_buf = 1 * s.lit_bufsize;
1744
+
1745
+ //s->l_buf = s->pending_buf + (1+sizeof(ush))*s->lit_bufsize;
1746
+ s.l_buf = (1 + 2) * s.lit_bufsize;
1747
+
1748
+ s.level = level;
1749
+ s.strategy = strategy;
1750
+ s.method = method;
1751
+
1752
+ return deflateReset(strm);
1753
+ }
1754
+
1755
+ function deflateInit(strm, level) {
1756
+ return deflateInit2(strm, level, Z_DEFLATED, MAX_WBITS, DEF_MEM_LEVEL, Z_DEFAULT_STRATEGY);
1757
+ }
1758
+
1759
+
1760
+ function deflate(strm, flush) {
1761
+ var old_flush, s;
1762
+ var beg, val; // for gzip header write only
1763
+
1764
+ if (!strm || !strm.state ||
1765
+ flush > Z_BLOCK || flush < 0) {
1766
+ return strm ? err(strm, Z_STREAM_ERROR) : Z_STREAM_ERROR;
1767
+ }
1768
+
1769
+ s = strm.state;
1770
+
1771
+ if (!strm.output ||
1772
+ (!strm.input && strm.avail_in !== 0) ||
1773
+ (s.status === FINISH_STATE && flush !== Z_FINISH)) {
1774
+ return err(strm, (strm.avail_out === 0) ? Z_BUF_ERROR : Z_STREAM_ERROR);
1775
+ }
1776
+
1777
+ s.strm = strm; /* just in case */
1778
+ old_flush = s.last_flush;
1779
+ s.last_flush = flush;
1780
+
1781
+ /* Write the header */
1782
+ if (s.status === INIT_STATE) {
1783
+
1784
+ if (s.wrap === 2) { // GZIP header
1785
+ strm.adler = 0; //crc32(0L, Z_NULL, 0);
1786
+ put_byte(s, 31);
1787
+ put_byte(s, 139);
1788
+ put_byte(s, 8);
1789
+ if (!s.gzhead) { // s->gzhead == Z_NULL
1790
+ put_byte(s, 0);
1791
+ put_byte(s, 0);
1792
+ put_byte(s, 0);
1793
+ put_byte(s, 0);
1794
+ put_byte(s, 0);
1795
+ put_byte(s, s.level === 9 ? 2 :
1796
+ (s.strategy >= Z_HUFFMAN_ONLY || s.level < 2 ?
1797
+ 4 : 0));
1798
+ put_byte(s, OS_CODE);
1799
+ s.status = BUSY_STATE;
1800
+ }
1801
+ else {
1802
+ put_byte(s, (s.gzhead.text ? 1 : 0) +
1803
+ (s.gzhead.hcrc ? 2 : 0) +
1804
+ (!s.gzhead.extra ? 0 : 4) +
1805
+ (!s.gzhead.name ? 0 : 8) +
1806
+ (!s.gzhead.comment ? 0 : 16)
1807
+ );
1808
+ put_byte(s, s.gzhead.time & 0xff);
1809
+ put_byte(s, (s.gzhead.time >> 8) & 0xff);
1810
+ put_byte(s, (s.gzhead.time >> 16) & 0xff);
1811
+ put_byte(s, (s.gzhead.time >> 24) & 0xff);
1812
+ put_byte(s, s.level === 9 ? 2 :
1813
+ (s.strategy >= Z_HUFFMAN_ONLY || s.level < 2 ?
1814
+ 4 : 0));
1815
+ put_byte(s, s.gzhead.os & 0xff);
1816
+ if (s.gzhead.extra && s.gzhead.extra.length) {
1817
+ put_byte(s, s.gzhead.extra.length & 0xff);
1818
+ put_byte(s, (s.gzhead.extra.length >> 8) & 0xff);
1819
+ }
1820
+ if (s.gzhead.hcrc) {
1821
+ strm.adler = crc32(strm.adler, s.pending_buf, s.pending, 0);
1822
+ }
1823
+ s.gzindex = 0;
1824
+ s.status = EXTRA_STATE;
1825
+ }
1826
+ }
1827
+ else // DEFLATE header
1828
+ {
1829
+ var header = (Z_DEFLATED + ((s.w_bits - 8) << 4)) << 8;
1830
+ var level_flags = -1;
1831
+
1832
+ if (s.strategy >= Z_HUFFMAN_ONLY || s.level < 2) {
1833
+ level_flags = 0;
1834
+ } else if (s.level < 6) {
1835
+ level_flags = 1;
1836
+ } else if (s.level === 6) {
1837
+ level_flags = 2;
1838
+ } else {
1839
+ level_flags = 3;
1840
+ }
1841
+ header |= (level_flags << 6);
1842
+ if (s.strstart !== 0) { header |= PRESET_DICT; }
1843
+ header += 31 - (header % 31);
1844
+
1845
+ s.status = BUSY_STATE;
1846
+ putShortMSB(s, header);
1847
+
1848
+ /* Save the adler32 of the preset dictionary: */
1849
+ if (s.strstart !== 0) {
1850
+ putShortMSB(s, strm.adler >>> 16);
1851
+ putShortMSB(s, strm.adler & 0xffff);
1852
+ }
1853
+ strm.adler = 1; // adler32(0L, Z_NULL, 0);
1854
+ }
1855
+ }
1856
+
1857
+ //#ifdef GZIP
1858
+ if (s.status === EXTRA_STATE) {
1859
+ if (s.gzhead.extra/* != Z_NULL*/) {
1860
+ beg = s.pending; /* start of bytes to update crc */
1861
+
1862
+ while (s.gzindex < (s.gzhead.extra.length & 0xffff)) {
1863
+ if (s.pending === s.pending_buf_size) {
1864
+ if (s.gzhead.hcrc && s.pending > beg) {
1865
+ strm.adler = crc32(strm.adler, s.pending_buf, s.pending - beg, beg);
1866
+ }
1867
+ flush_pending(strm);
1868
+ beg = s.pending;
1869
+ if (s.pending === s.pending_buf_size) {
1870
+ break;
1871
+ }
1872
+ }
1873
+ put_byte(s, s.gzhead.extra[s.gzindex] & 0xff);
1874
+ s.gzindex++;
1875
+ }
1876
+ if (s.gzhead.hcrc && s.pending > beg) {
1877
+ strm.adler = crc32(strm.adler, s.pending_buf, s.pending - beg, beg);
1878
+ }
1879
+ if (s.gzindex === s.gzhead.extra.length) {
1880
+ s.gzindex = 0;
1881
+ s.status = NAME_STATE;
1882
+ }
1883
+ }
1884
+ else {
1885
+ s.status = NAME_STATE;
1886
+ }
1887
+ }
1888
+ if (s.status === NAME_STATE) {
1889
+ if (s.gzhead.name/* != Z_NULL*/) {
1890
+ beg = s.pending; /* start of bytes to update crc */
1891
+ //int val;
1892
+
1893
+ do {
1894
+ if (s.pending === s.pending_buf_size) {
1895
+ if (s.gzhead.hcrc && s.pending > beg) {
1896
+ strm.adler = crc32(strm.adler, s.pending_buf, s.pending - beg, beg);
1897
+ }
1898
+ flush_pending(strm);
1899
+ beg = s.pending;
1900
+ if (s.pending === s.pending_buf_size) {
1901
+ val = 1;
1902
+ break;
1903
+ }
1904
+ }
1905
+ // JS specific: little magic to add zero terminator to end of string
1906
+ if (s.gzindex < s.gzhead.name.length) {
1907
+ val = s.gzhead.name.charCodeAt(s.gzindex++) & 0xff;
1908
+ } else {
1909
+ val = 0;
1910
+ }
1911
+ put_byte(s, val);
1912
+ } while (val !== 0);
1913
+
1914
+ if (s.gzhead.hcrc && s.pending > beg) {
1915
+ strm.adler = crc32(strm.adler, s.pending_buf, s.pending - beg, beg);
1916
+ }
1917
+ if (val === 0) {
1918
+ s.gzindex = 0;
1919
+ s.status = COMMENT_STATE;
1920
+ }
1921
+ }
1922
+ else {
1923
+ s.status = COMMENT_STATE;
1924
+ }
1925
+ }
1926
+ if (s.status === COMMENT_STATE) {
1927
+ if (s.gzhead.comment/* != Z_NULL*/) {
1928
+ beg = s.pending; /* start of bytes to update crc */
1929
+ //int val;
1930
+
1931
+ do {
1932
+ if (s.pending === s.pending_buf_size) {
1933
+ if (s.gzhead.hcrc && s.pending > beg) {
1934
+ strm.adler = crc32(strm.adler, s.pending_buf, s.pending - beg, beg);
1935
+ }
1936
+ flush_pending(strm);
1937
+ beg = s.pending;
1938
+ if (s.pending === s.pending_buf_size) {
1939
+ val = 1;
1940
+ break;
1941
+ }
1942
+ }
1943
+ // JS specific: little magic to add zero terminator to end of string
1944
+ if (s.gzindex < s.gzhead.comment.length) {
1945
+ val = s.gzhead.comment.charCodeAt(s.gzindex++) & 0xff;
1946
+ } else {
1947
+ val = 0;
1948
+ }
1949
+ put_byte(s, val);
1950
+ } while (val !== 0);
1951
+
1952
+ if (s.gzhead.hcrc && s.pending > beg) {
1953
+ strm.adler = crc32(strm.adler, s.pending_buf, s.pending - beg, beg);
1954
+ }
1955
+ if (val === 0) {
1956
+ s.status = HCRC_STATE;
1957
+ }
1958
+ }
1959
+ else {
1960
+ s.status = HCRC_STATE;
1961
+ }
1962
+ }
1963
+ if (s.status === HCRC_STATE) {
1964
+ if (s.gzhead.hcrc) {
1965
+ if (s.pending + 2 > s.pending_buf_size) {
1966
+ flush_pending(strm);
1967
+ }
1968
+ if (s.pending + 2 <= s.pending_buf_size) {
1969
+ put_byte(s, strm.adler & 0xff);
1970
+ put_byte(s, (strm.adler >> 8) & 0xff);
1971
+ strm.adler = 0; //crc32(0L, Z_NULL, 0);
1972
+ s.status = BUSY_STATE;
1973
+ }
1974
+ }
1975
+ else {
1976
+ s.status = BUSY_STATE;
1977
+ }
1978
+ }
1979
+ //#endif
1980
+
1981
+ /* Flush as much pending output as possible */
1982
+ if (s.pending !== 0) {
1983
+ flush_pending(strm);
1984
+ if (strm.avail_out === 0) {
1985
+ /* Since avail_out is 0, deflate will be called again with
1986
+ * more output space, but possibly with both pending and
1987
+ * avail_in equal to zero. There won't be anything to do,
1988
+ * but this is not an error situation so make sure we
1989
+ * return OK instead of BUF_ERROR at next call of deflate:
1990
+ */
1991
+ s.last_flush = -1;
1992
+ return Z_OK;
1993
+ }
1994
+
1995
+ /* Make sure there is something to do and avoid duplicate consecutive
1996
+ * flushes. For repeated and useless calls with Z_FINISH, we keep
1997
+ * returning Z_STREAM_END instead of Z_BUF_ERROR.
1998
+ */
1999
+ } else if (strm.avail_in === 0 && rank(flush) <= rank(old_flush) &&
2000
+ flush !== Z_FINISH) {
2001
+ return err(strm, Z_BUF_ERROR);
2002
+ }
2003
+
2004
+ /* User must not provide more input after the first FINISH: */
2005
+ if (s.status === FINISH_STATE && strm.avail_in !== 0) {
2006
+ return err(strm, Z_BUF_ERROR);
2007
+ }
2008
+
2009
+ /* Start a new block or continue the current one.
2010
+ */
2011
+ if (strm.avail_in !== 0 || s.lookahead !== 0 ||
2012
+ (flush !== Z_NO_FLUSH && s.status !== FINISH_STATE)) {
2013
+ var bstate = (s.strategy === Z_HUFFMAN_ONLY) ? deflate_huff(s, flush) :
2014
+ (s.strategy === Z_RLE ? deflate_rle(s, flush) :
2015
+ configuration_table[s.level].func(s, flush));
2016
+
2017
+ if (bstate === BS_FINISH_STARTED || bstate === BS_FINISH_DONE) {
2018
+ s.status = FINISH_STATE;
2019
+ }
2020
+ if (bstate === BS_NEED_MORE || bstate === BS_FINISH_STARTED) {
2021
+ if (strm.avail_out === 0) {
2022
+ s.last_flush = -1;
2023
+ /* avoid BUF_ERROR next call, see above */
2024
+ }
2025
+ return Z_OK;
2026
+ /* If flush != Z_NO_FLUSH && avail_out == 0, the next call
2027
+ * of deflate should use the same flush parameter to make sure
2028
+ * that the flush is complete. So we don't have to output an
2029
+ * empty block here, this will be done at next call. This also
2030
+ * ensures that for a very small output buffer, we emit at most
2031
+ * one empty block.
2032
+ */
2033
+ }
2034
+ if (bstate === BS_BLOCK_DONE) {
2035
+ if (flush === Z_PARTIAL_FLUSH) {
2036
+ trees._tr_align(s);
2037
+ }
2038
+ else if (flush !== Z_BLOCK) { /* FULL_FLUSH or SYNC_FLUSH */
2039
+
2040
+ trees._tr_stored_block(s, 0, 0, false);
2041
+ /* For a full flush, this empty block will be recognized
2042
+ * as a special marker by inflate_sync().
2043
+ */
2044
+ if (flush === Z_FULL_FLUSH) {
2045
+ /*** CLEAR_HASH(s); ***/ /* forget history */
2046
+ zero(s.head); // Fill with NIL (= 0);
2047
+
2048
+ if (s.lookahead === 0) {
2049
+ s.strstart = 0;
2050
+ s.block_start = 0;
2051
+ s.insert = 0;
2052
+ }
2053
+ }
2054
+ }
2055
+ flush_pending(strm);
2056
+ if (strm.avail_out === 0) {
2057
+ s.last_flush = -1; /* avoid BUF_ERROR at next call, see above */
2058
+ return Z_OK;
2059
+ }
2060
+ }
2061
+ }
2062
+ //Assert(strm->avail_out > 0, "bug2");
2063
+ //if (strm.avail_out <= 0) { throw new Error("bug2");}
2064
+
2065
+ if (flush !== Z_FINISH) { return Z_OK; }
2066
+ if (s.wrap <= 0) { return Z_STREAM_END; }
2067
+
2068
+ /* Write the trailer */
2069
+ if (s.wrap === 2) {
2070
+ put_byte(s, strm.adler & 0xff);
2071
+ put_byte(s, (strm.adler >> 8) & 0xff);
2072
+ put_byte(s, (strm.adler >> 16) & 0xff);
2073
+ put_byte(s, (strm.adler >> 24) & 0xff);
2074
+ put_byte(s, strm.total_in & 0xff);
2075
+ put_byte(s, (strm.total_in >> 8) & 0xff);
2076
+ put_byte(s, (strm.total_in >> 16) & 0xff);
2077
+ put_byte(s, (strm.total_in >> 24) & 0xff);
2078
+ }
2079
+ else
2080
+ {
2081
+ putShortMSB(s, strm.adler >>> 16);
2082
+ putShortMSB(s, strm.adler & 0xffff);
2083
+ }
2084
+
2085
+ flush_pending(strm);
2086
+ /* If avail_out is zero, the application will call deflate again
2087
+ * to flush the rest.
2088
+ */
2089
+ if (s.wrap > 0) { s.wrap = -s.wrap; }
2090
+ /* write the trailer only once! */
2091
+ return s.pending !== 0 ? Z_OK : Z_STREAM_END;
2092
+ }
2093
+
2094
+ function deflateEnd(strm) {
2095
+ var status;
2096
+
2097
+ if (!strm/*== Z_NULL*/ || !strm.state/*== Z_NULL*/) {
2098
+ return Z_STREAM_ERROR;
2099
+ }
2100
+
2101
+ status = strm.state.status;
2102
+ if (status !== INIT_STATE &&
2103
+ status !== EXTRA_STATE &&
2104
+ status !== NAME_STATE &&
2105
+ status !== COMMENT_STATE &&
2106
+ status !== HCRC_STATE &&
2107
+ status !== BUSY_STATE &&
2108
+ status !== FINISH_STATE
2109
+ ) {
2110
+ return err(strm, Z_STREAM_ERROR);
2111
+ }
2112
+
2113
+ strm.state = null;
2114
+
2115
+ return status === BUSY_STATE ? err(strm, Z_DATA_ERROR) : Z_OK;
2116
+ }
2117
+
2118
+
2119
+ /* =========================================================================
2120
+ * Initializes the compression dictionary from the given byte
2121
+ * sequence without producing any compressed output.
2122
+ */
2123
+ function deflateSetDictionary(strm, dictionary) {
2124
+ var dictLength = dictionary.length;
2125
+
2126
+ var s;
2127
+ var str, n;
2128
+ var wrap;
2129
+ var avail;
2130
+ var next;
2131
+ var input;
2132
+ var tmpDict;
2133
+
2134
+ if (!strm/*== Z_NULL*/ || !strm.state/*== Z_NULL*/) {
2135
+ return Z_STREAM_ERROR;
2136
+ }
2137
+
2138
+ s = strm.state;
2139
+ wrap = s.wrap;
2140
+
2141
+ if (wrap === 2 || (wrap === 1 && s.status !== INIT_STATE) || s.lookahead) {
2142
+ return Z_STREAM_ERROR;
2143
+ }
2144
+
2145
+ /* when using zlib wrappers, compute Adler-32 for provided dictionary */
2146
+ if (wrap === 1) {
2147
+ /* adler32(strm->adler, dictionary, dictLength); */
2148
+ strm.adler = adler32(strm.adler, dictionary, dictLength, 0);
2149
+ }
2150
+
2151
+ s.wrap = 0; /* avoid computing Adler-32 in read_buf */
2152
+
2153
+ /* if dictionary would fill window, just replace the history */
2154
+ if (dictLength >= s.w_size) {
2155
+ if (wrap === 0) { /* already empty otherwise */
2156
+ /*** CLEAR_HASH(s); ***/
2157
+ zero(s.head); // Fill with NIL (= 0);
2158
+ s.strstart = 0;
2159
+ s.block_start = 0;
2160
+ s.insert = 0;
2161
+ }
2162
+ /* use the tail */
2163
+ // dictionary = dictionary.slice(dictLength - s.w_size);
2164
+ tmpDict = new utils.Buf8(s.w_size);
2165
+ utils.arraySet(tmpDict, dictionary, dictLength - s.w_size, s.w_size, 0);
2166
+ dictionary = tmpDict;
2167
+ dictLength = s.w_size;
2168
+ }
2169
+ /* insert dictionary into window and hash */
2170
+ avail = strm.avail_in;
2171
+ next = strm.next_in;
2172
+ input = strm.input;
2173
+ strm.avail_in = dictLength;
2174
+ strm.next_in = 0;
2175
+ strm.input = dictionary;
2176
+ fill_window(s);
2177
+ while (s.lookahead >= MIN_MATCH) {
2178
+ str = s.strstart;
2179
+ n = s.lookahead - (MIN_MATCH - 1);
2180
+ do {
2181
+ /* UPDATE_HASH(s, s->ins_h, s->window[str + MIN_MATCH-1]); */
2182
+ s.ins_h = ((s.ins_h << s.hash_shift) ^ s.window[str + MIN_MATCH - 1]) & s.hash_mask;
2183
+
2184
+ s.prev[str & s.w_mask] = s.head[s.ins_h];
2185
+
2186
+ s.head[s.ins_h] = str;
2187
+ str++;
2188
+ } while (--n);
2189
+ s.strstart = str;
2190
+ s.lookahead = MIN_MATCH - 1;
2191
+ fill_window(s);
2192
+ }
2193
+ s.strstart += s.lookahead;
2194
+ s.block_start = s.strstart;
2195
+ s.insert = s.lookahead;
2196
+ s.lookahead = 0;
2197
+ s.match_length = s.prev_length = MIN_MATCH - 1;
2198
+ s.match_available = 0;
2199
+ strm.next_in = next;
2200
+ strm.input = input;
2201
+ strm.avail_in = avail;
2202
+ s.wrap = wrap;
2203
+ return Z_OK;
2204
+ }
2205
+
2206
+
2207
+ exports.deflateInit = deflateInit;
2208
+ exports.deflateInit2 = deflateInit2;
2209
+ exports.deflateReset = deflateReset;
2210
+ exports.deflateResetKeep = deflateResetKeep;
2211
+ exports.deflateSetHeader = deflateSetHeader;
2212
+ exports.deflate = deflate;
2213
+ exports.deflateEnd = deflateEnd;
2214
+ exports.deflateSetDictionary = deflateSetDictionary;
2215
+ exports.deflateInfo = 'pako deflate (from Nodeca project)';
2216
+
2217
+ /* Not implemented
2218
+ exports.deflateBound = deflateBound;
2219
+ exports.deflateCopy = deflateCopy;
2220
+ exports.deflateParams = deflateParams;
2221
+ exports.deflatePending = deflatePending;
2222
+ exports.deflatePrime = deflatePrime;
2223
+ exports.deflateTune = deflateTune;
2224
+ */
2225
+
2226
+ },{"../utils/common":1,"./adler32":3,"./crc32":4,"./messages":6,"./trees":7}],6:[function(require,module,exports){
2227
+ 'use strict';
2228
+
2229
+ module.exports = {
2230
+ 2: 'need dictionary', /* Z_NEED_DICT 2 */
2231
+ 1: 'stream end', /* Z_STREAM_END 1 */
2232
+ 0: '', /* Z_OK 0 */
2233
+ '-1': 'file error', /* Z_ERRNO (-1) */
2234
+ '-2': 'stream error', /* Z_STREAM_ERROR (-2) */
2235
+ '-3': 'data error', /* Z_DATA_ERROR (-3) */
2236
+ '-4': 'insufficient memory', /* Z_MEM_ERROR (-4) */
2237
+ '-5': 'buffer error', /* Z_BUF_ERROR (-5) */
2238
+ '-6': 'incompatible version' /* Z_VERSION_ERROR (-6) */
2239
+ };
2240
+
2241
+ },{}],7:[function(require,module,exports){
2242
+ 'use strict';
2243
+
2244
+
2245
+ var utils = require('../utils/common');
2246
+
2247
+ /* Public constants ==========================================================*/
2248
+ /* ===========================================================================*/
2249
+
2250
+
2251
+ //var Z_FILTERED = 1;
2252
+ //var Z_HUFFMAN_ONLY = 2;
2253
+ //var Z_RLE = 3;
2254
+ var Z_FIXED = 4;
2255
+ //var Z_DEFAULT_STRATEGY = 0;
2256
+
2257
+ /* Possible values of the data_type field (though see inflate()) */
2258
+ var Z_BINARY = 0;
2259
+ var Z_TEXT = 1;
2260
+ //var Z_ASCII = 1; // = Z_TEXT
2261
+ var Z_UNKNOWN = 2;
2262
+
2263
+ /*============================================================================*/
2264
+
2265
+
2266
+ function zero(buf) { var len = buf.length; while (--len >= 0) { buf[len] = 0; } }
2267
+
2268
+ // From zutil.h
2269
+
2270
+ var STORED_BLOCK = 0;
2271
+ var STATIC_TREES = 1;
2272
+ var DYN_TREES = 2;
2273
+ /* The three kinds of block type */
2274
+
2275
+ var MIN_MATCH = 3;
2276
+ var MAX_MATCH = 258;
2277
+ /* The minimum and maximum match lengths */
2278
+
2279
+ // From deflate.h
2280
+ /* ===========================================================================
2281
+ * Internal compression state.
2282
+ */
2283
+
2284
+ var LENGTH_CODES = 29;
2285
+ /* number of length codes, not counting the special END_BLOCK code */
2286
+
2287
+ var LITERALS = 256;
2288
+ /* number of literal bytes 0..255 */
2289
+
2290
+ var L_CODES = LITERALS + 1 + LENGTH_CODES;
2291
+ /* number of Literal or Length codes, including the END_BLOCK code */
2292
+
2293
+ var D_CODES = 30;
2294
+ /* number of distance codes */
2295
+
2296
+ var BL_CODES = 19;
2297
+ /* number of codes used to transfer the bit lengths */
2298
+
2299
+ var HEAP_SIZE = 2 * L_CODES + 1;
2300
+ /* maximum heap size */
2301
+
2302
+ var MAX_BITS = 15;
2303
+ /* All codes must not exceed MAX_BITS bits */
2304
+
2305
+ var Buf_size = 16;
2306
+ /* size of bit buffer in bi_buf */
2307
+
2308
+
2309
+ /* ===========================================================================
2310
+ * Constants
2311
+ */
2312
+
2313
+ var MAX_BL_BITS = 7;
2314
+ /* Bit length codes must not exceed MAX_BL_BITS bits */
2315
+
2316
+ var END_BLOCK = 256;
2317
+ /* end of block literal code */
2318
+
2319
+ var REP_3_6 = 16;
2320
+ /* repeat previous bit length 3-6 times (2 bits of repeat count) */
2321
+
2322
+ var REPZ_3_10 = 17;
2323
+ /* repeat a zero length 3-10 times (3 bits of repeat count) */
2324
+
2325
+ var REPZ_11_138 = 18;
2326
+ /* repeat a zero length 11-138 times (7 bits of repeat count) */
2327
+
2328
+ /* eslint-disable comma-spacing,array-bracket-spacing */
2329
+ var extra_lbits = /* extra bits for each length code */
2330
+ [0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,0];
2331
+
2332
+ var extra_dbits = /* extra bits for each distance code */
2333
+ [0,0,0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13];
2334
+
2335
+ var extra_blbits = /* extra bits for each bit length code */
2336
+ [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,7];
2337
+
2338
+ var bl_order =
2339
+ [16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15];
2340
+ /* eslint-enable comma-spacing,array-bracket-spacing */
2341
+
2342
+ /* The lengths of the bit length codes are sent in order of decreasing
2343
+ * probability, to avoid transmitting the lengths for unused bit length codes.
2344
+ */
2345
+
2346
+ /* ===========================================================================
2347
+ * Local data. These are initialized only once.
2348
+ */
2349
+
2350
+ // We pre-fill arrays with 0 to avoid uninitialized gaps
2351
+
2352
+ var DIST_CODE_LEN = 512; /* see definition of array dist_code below */
2353
+
2354
+ // !!!! Use flat array insdead of structure, Freq = i*2, Len = i*2+1
2355
+ var static_ltree = new Array((L_CODES + 2) * 2);
2356
+ zero(static_ltree);
2357
+ /* The static literal tree. Since the bit lengths are imposed, there is no
2358
+ * need for the L_CODES extra codes used during heap construction. However
2359
+ * The codes 286 and 287 are needed to build a canonical tree (see _tr_init
2360
+ * below).
2361
+ */
2362
+
2363
+ var static_dtree = new Array(D_CODES * 2);
2364
+ zero(static_dtree);
2365
+ /* The static distance tree. (Actually a trivial tree since all codes use
2366
+ * 5 bits.)
2367
+ */
2368
+
2369
+ var _dist_code = new Array(DIST_CODE_LEN);
2370
+ zero(_dist_code);
2371
+ /* Distance codes. The first 256 values correspond to the distances
2372
+ * 3 .. 258, the last 256 values correspond to the top 8 bits of
2373
+ * the 15 bit distances.
2374
+ */
2375
+
2376
+ var _length_code = new Array(MAX_MATCH - MIN_MATCH + 1);
2377
+ zero(_length_code);
2378
+ /* length code for each normalized match length (0 == MIN_MATCH) */
2379
+
2380
+ var base_length = new Array(LENGTH_CODES);
2381
+ zero(base_length);
2382
+ /* First normalized length for each code (0 = MIN_MATCH) */
2383
+
2384
+ var base_dist = new Array(D_CODES);
2385
+ zero(base_dist);
2386
+ /* First normalized distance for each code (0 = distance of 1) */
2387
+
2388
+
2389
+ function StaticTreeDesc(static_tree, extra_bits, extra_base, elems, max_length) {
2390
+
2391
+ this.static_tree = static_tree; /* static tree or NULL */
2392
+ this.extra_bits = extra_bits; /* extra bits for each code or NULL */
2393
+ this.extra_base = extra_base; /* base index for extra_bits */
2394
+ this.elems = elems; /* max number of elements in the tree */
2395
+ this.max_length = max_length; /* max bit length for the codes */
2396
+
2397
+ // show if `static_tree` has data or dummy - needed for monomorphic objects
2398
+ this.has_stree = static_tree && static_tree.length;
2399
+ }
2400
+
2401
+
2402
+ var static_l_desc;
2403
+ var static_d_desc;
2404
+ var static_bl_desc;
2405
+
2406
+
2407
+ function TreeDesc(dyn_tree, stat_desc) {
2408
+ this.dyn_tree = dyn_tree; /* the dynamic tree */
2409
+ this.max_code = 0; /* largest code with non zero frequency */
2410
+ this.stat_desc = stat_desc; /* the corresponding static tree */
2411
+ }
2412
+
2413
+
2414
+
2415
+ function d_code(dist) {
2416
+ return dist < 256 ? _dist_code[dist] : _dist_code[256 + (dist >>> 7)];
2417
+ }
2418
+
2419
+
2420
+ /* ===========================================================================
2421
+ * Output a short LSB first on the stream.
2422
+ * IN assertion: there is enough room in pendingBuf.
2423
+ */
2424
+ function put_short(s, w) {
2425
+ // put_byte(s, (uch)((w) & 0xff));
2426
+ // put_byte(s, (uch)((ush)(w) >> 8));
2427
+ s.pending_buf[s.pending++] = (w) & 0xff;
2428
+ s.pending_buf[s.pending++] = (w >>> 8) & 0xff;
2429
+ }
2430
+
2431
+
2432
+ /* ===========================================================================
2433
+ * Send a value on a given number of bits.
2434
+ * IN assertion: length <= 16 and value fits in length bits.
2435
+ */
2436
+ function send_bits(s, value, length) {
2437
+ if (s.bi_valid > (Buf_size - length)) {
2438
+ s.bi_buf |= (value << s.bi_valid) & 0xffff;
2439
+ put_short(s, s.bi_buf);
2440
+ s.bi_buf = value >> (Buf_size - s.bi_valid);
2441
+ s.bi_valid += length - Buf_size;
2442
+ } else {
2443
+ s.bi_buf |= (value << s.bi_valid) & 0xffff;
2444
+ s.bi_valid += length;
2445
+ }
2446
+ }
2447
+
2448
+
2449
+ function send_code(s, c, tree) {
2450
+ send_bits(s, tree[c * 2]/*.Code*/, tree[c * 2 + 1]/*.Len*/);
2451
+ }
2452
+
2453
+
2454
+ /* ===========================================================================
2455
+ * Reverse the first len bits of a code, using straightforward code (a faster
2456
+ * method would use a table)
2457
+ * IN assertion: 1 <= len <= 15
2458
+ */
2459
+ function bi_reverse(code, len) {
2460
+ var res = 0;
2461
+ do {
2462
+ res |= code & 1;
2463
+ code >>>= 1;
2464
+ res <<= 1;
2465
+ } while (--len > 0);
2466
+ return res >>> 1;
2467
+ }
2468
+
2469
+
2470
+ /* ===========================================================================
2471
+ * Flush the bit buffer, keeping at most 7 bits in it.
2472
+ */
2473
+ function bi_flush(s) {
2474
+ if (s.bi_valid === 16) {
2475
+ put_short(s, s.bi_buf);
2476
+ s.bi_buf = 0;
2477
+ s.bi_valid = 0;
2478
+
2479
+ } else if (s.bi_valid >= 8) {
2480
+ s.pending_buf[s.pending++] = s.bi_buf & 0xff;
2481
+ s.bi_buf >>= 8;
2482
+ s.bi_valid -= 8;
2483
+ }
2484
+ }
2485
+
2486
+
2487
+ /* ===========================================================================
2488
+ * Compute the optimal bit lengths for a tree and update the total bit length
2489
+ * for the current block.
2490
+ * IN assertion: the fields freq and dad are set, heap[heap_max] and
2491
+ * above are the tree nodes sorted by increasing frequency.
2492
+ * OUT assertions: the field len is set to the optimal bit length, the
2493
+ * array bl_count contains the frequencies for each bit length.
2494
+ * The length opt_len is updated; static_len is also updated if stree is
2495
+ * not null.
2496
+ */
2497
+ function gen_bitlen(s, desc)
2498
+ // deflate_state *s;
2499
+ // tree_desc *desc; /* the tree descriptor */
2500
+ {
2501
+ var tree = desc.dyn_tree;
2502
+ var max_code = desc.max_code;
2503
+ var stree = desc.stat_desc.static_tree;
2504
+ var has_stree = desc.stat_desc.has_stree;
2505
+ var extra = desc.stat_desc.extra_bits;
2506
+ var base = desc.stat_desc.extra_base;
2507
+ var max_length = desc.stat_desc.max_length;
2508
+ var h; /* heap index */
2509
+ var n, m; /* iterate over the tree elements */
2510
+ var bits; /* bit length */
2511
+ var xbits; /* extra bits */
2512
+ var f; /* frequency */
2513
+ var overflow = 0; /* number of elements with bit length too large */
2514
+
2515
+ for (bits = 0; bits <= MAX_BITS; bits++) {
2516
+ s.bl_count[bits] = 0;
2517
+ }
2518
+
2519
+ /* In a first pass, compute the optimal bit lengths (which may
2520
+ * overflow in the case of the bit length tree).
2521
+ */
2522
+ tree[s.heap[s.heap_max] * 2 + 1]/*.Len*/ = 0; /* root of the heap */
2523
+
2524
+ for (h = s.heap_max + 1; h < HEAP_SIZE; h++) {
2525
+ n = s.heap[h];
2526
+ bits = tree[tree[n * 2 + 1]/*.Dad*/ * 2 + 1]/*.Len*/ + 1;
2527
+ if (bits > max_length) {
2528
+ bits = max_length;
2529
+ overflow++;
2530
+ }
2531
+ tree[n * 2 + 1]/*.Len*/ = bits;
2532
+ /* We overwrite tree[n].Dad which is no longer needed */
2533
+
2534
+ if (n > max_code) { continue; } /* not a leaf node */
2535
+
2536
+ s.bl_count[bits]++;
2537
+ xbits = 0;
2538
+ if (n >= base) {
2539
+ xbits = extra[n - base];
2540
+ }
2541
+ f = tree[n * 2]/*.Freq*/;
2542
+ s.opt_len += f * (bits + xbits);
2543
+ if (has_stree) {
2544
+ s.static_len += f * (stree[n * 2 + 1]/*.Len*/ + xbits);
2545
+ }
2546
+ }
2547
+ if (overflow === 0) { return; }
2548
+
2549
+ // Trace((stderr,"\nbit length overflow\n"));
2550
+ /* This happens for example on obj2 and pic of the Calgary corpus */
2551
+
2552
+ /* Find the first bit length which could increase: */
2553
+ do {
2554
+ bits = max_length - 1;
2555
+ while (s.bl_count[bits] === 0) { bits--; }
2556
+ s.bl_count[bits]--; /* move one leaf down the tree */
2557
+ s.bl_count[bits + 1] += 2; /* move one overflow item as its brother */
2558
+ s.bl_count[max_length]--;
2559
+ /* The brother of the overflow item also moves one step up,
2560
+ * but this does not affect bl_count[max_length]
2561
+ */
2562
+ overflow -= 2;
2563
+ } while (overflow > 0);
2564
+
2565
+ /* Now recompute all bit lengths, scanning in increasing frequency.
2566
+ * h is still equal to HEAP_SIZE. (It is simpler to reconstruct all
2567
+ * lengths instead of fixing only the wrong ones. This idea is taken
2568
+ * from 'ar' written by Haruhiko Okumura.)
2569
+ */
2570
+ for (bits = max_length; bits !== 0; bits--) {
2571
+ n = s.bl_count[bits];
2572
+ while (n !== 0) {
2573
+ m = s.heap[--h];
2574
+ if (m > max_code) { continue; }
2575
+ if (tree[m * 2 + 1]/*.Len*/ !== bits) {
2576
+ // Trace((stderr,"code %d bits %d->%d\n", m, tree[m].Len, bits));
2577
+ s.opt_len += (bits - tree[m * 2 + 1]/*.Len*/) * tree[m * 2]/*.Freq*/;
2578
+ tree[m * 2 + 1]/*.Len*/ = bits;
2579
+ }
2580
+ n--;
2581
+ }
2582
+ }
2583
+ }
2584
+
2585
+
2586
+ /* ===========================================================================
2587
+ * Generate the codes for a given tree and bit counts (which need not be
2588
+ * optimal).
2589
+ * IN assertion: the array bl_count contains the bit length statistics for
2590
+ * the given tree and the field len is set for all tree elements.
2591
+ * OUT assertion: the field code is set for all tree elements of non
2592
+ * zero code length.
2593
+ */
2594
+ function gen_codes(tree, max_code, bl_count)
2595
+ // ct_data *tree; /* the tree to decorate */
2596
+ // int max_code; /* largest code with non zero frequency */
2597
+ // ushf *bl_count; /* number of codes at each bit length */
2598
+ {
2599
+ var next_code = new Array(MAX_BITS + 1); /* next code value for each bit length */
2600
+ var code = 0; /* running code value */
2601
+ var bits; /* bit index */
2602
+ var n; /* code index */
2603
+
2604
+ /* The distribution counts are first used to generate the code values
2605
+ * without bit reversal.
2606
+ */
2607
+ for (bits = 1; bits <= MAX_BITS; bits++) {
2608
+ next_code[bits] = code = (code + bl_count[bits - 1]) << 1;
2609
+ }
2610
+ /* Check that the bit counts in bl_count are consistent. The last code
2611
+ * must be all ones.
2612
+ */
2613
+ //Assert (code + bl_count[MAX_BITS]-1 == (1<<MAX_BITS)-1,
2614
+ // "inconsistent bit counts");
2615
+ //Tracev((stderr,"\ngen_codes: max_code %d ", max_code));
2616
+
2617
+ for (n = 0; n <= max_code; n++) {
2618
+ var len = tree[n * 2 + 1]/*.Len*/;
2619
+ if (len === 0) { continue; }
2620
+ /* Now reverse the bits */
2621
+ tree[n * 2]/*.Code*/ = bi_reverse(next_code[len]++, len);
2622
+
2623
+ //Tracecv(tree != static_ltree, (stderr,"\nn %3d %c l %2d c %4x (%x) ",
2624
+ // n, (isgraph(n) ? n : ' '), len, tree[n].Code, next_code[len]-1));
2625
+ }
2626
+ }
2627
+
2628
+
2629
+ /* ===========================================================================
2630
+ * Initialize the various 'constant' tables.
2631
+ */
2632
+ function tr_static_init() {
2633
+ var n; /* iterates over tree elements */
2634
+ var bits; /* bit counter */
2635
+ var length; /* length value */
2636
+ var code; /* code value */
2637
+ var dist; /* distance index */
2638
+ var bl_count = new Array(MAX_BITS + 1);
2639
+ /* number of codes at each bit length for an optimal tree */
2640
+
2641
+ // do check in _tr_init()
2642
+ //if (static_init_done) return;
2643
+
2644
+ /* For some embedded targets, global variables are not initialized: */
2645
+ /*#ifdef NO_INIT_GLOBAL_POINTERS
2646
+ static_l_desc.static_tree = static_ltree;
2647
+ static_l_desc.extra_bits = extra_lbits;
2648
+ static_d_desc.static_tree = static_dtree;
2649
+ static_d_desc.extra_bits = extra_dbits;
2650
+ static_bl_desc.extra_bits = extra_blbits;
2651
+ #endif*/
2652
+
2653
+ /* Initialize the mapping length (0..255) -> length code (0..28) */
2654
+ length = 0;
2655
+ for (code = 0; code < LENGTH_CODES - 1; code++) {
2656
+ base_length[code] = length;
2657
+ for (n = 0; n < (1 << extra_lbits[code]); n++) {
2658
+ _length_code[length++] = code;
2659
+ }
2660
+ }
2661
+ //Assert (length == 256, "tr_static_init: length != 256");
2662
+ /* Note that the length 255 (match length 258) can be represented
2663
+ * in two different ways: code 284 + 5 bits or code 285, so we
2664
+ * overwrite length_code[255] to use the best encoding:
2665
+ */
2666
+ _length_code[length - 1] = code;
2667
+
2668
+ /* Initialize the mapping dist (0..32K) -> dist code (0..29) */
2669
+ dist = 0;
2670
+ for (code = 0; code < 16; code++) {
2671
+ base_dist[code] = dist;
2672
+ for (n = 0; n < (1 << extra_dbits[code]); n++) {
2673
+ _dist_code[dist++] = code;
2674
+ }
2675
+ }
2676
+ //Assert (dist == 256, "tr_static_init: dist != 256");
2677
+ dist >>= 7; /* from now on, all distances are divided by 128 */
2678
+ for (; code < D_CODES; code++) {
2679
+ base_dist[code] = dist << 7;
2680
+ for (n = 0; n < (1 << (extra_dbits[code] - 7)); n++) {
2681
+ _dist_code[256 + dist++] = code;
2682
+ }
2683
+ }
2684
+ //Assert (dist == 256, "tr_static_init: 256+dist != 512");
2685
+
2686
+ /* Construct the codes of the static literal tree */
2687
+ for (bits = 0; bits <= MAX_BITS; bits++) {
2688
+ bl_count[bits] = 0;
2689
+ }
2690
+
2691
+ n = 0;
2692
+ while (n <= 143) {
2693
+ static_ltree[n * 2 + 1]/*.Len*/ = 8;
2694
+ n++;
2695
+ bl_count[8]++;
2696
+ }
2697
+ while (n <= 255) {
2698
+ static_ltree[n * 2 + 1]/*.Len*/ = 9;
2699
+ n++;
2700
+ bl_count[9]++;
2701
+ }
2702
+ while (n <= 279) {
2703
+ static_ltree[n * 2 + 1]/*.Len*/ = 7;
2704
+ n++;
2705
+ bl_count[7]++;
2706
+ }
2707
+ while (n <= 287) {
2708
+ static_ltree[n * 2 + 1]/*.Len*/ = 8;
2709
+ n++;
2710
+ bl_count[8]++;
2711
+ }
2712
+ /* Codes 286 and 287 do not exist, but we must include them in the
2713
+ * tree construction to get a canonical Huffman tree (longest code
2714
+ * all ones)
2715
+ */
2716
+ gen_codes(static_ltree, L_CODES + 1, bl_count);
2717
+
2718
+ /* The static distance tree is trivial: */
2719
+ for (n = 0; n < D_CODES; n++) {
2720
+ static_dtree[n * 2 + 1]/*.Len*/ = 5;
2721
+ static_dtree[n * 2]/*.Code*/ = bi_reverse(n, 5);
2722
+ }
2723
+
2724
+ // Now data ready and we can init static trees
2725
+ static_l_desc = new StaticTreeDesc(static_ltree, extra_lbits, LITERALS + 1, L_CODES, MAX_BITS);
2726
+ static_d_desc = new StaticTreeDesc(static_dtree, extra_dbits, 0, D_CODES, MAX_BITS);
2727
+ static_bl_desc = new StaticTreeDesc(new Array(0), extra_blbits, 0, BL_CODES, MAX_BL_BITS);
2728
+
2729
+ //static_init_done = true;
2730
+ }
2731
+
2732
+
2733
+ /* ===========================================================================
2734
+ * Initialize a new block.
2735
+ */
2736
+ function init_block(s) {
2737
+ var n; /* iterates over tree elements */
2738
+
2739
+ /* Initialize the trees. */
2740
+ for (n = 0; n < L_CODES; n++) { s.dyn_ltree[n * 2]/*.Freq*/ = 0; }
2741
+ for (n = 0; n < D_CODES; n++) { s.dyn_dtree[n * 2]/*.Freq*/ = 0; }
2742
+ for (n = 0; n < BL_CODES; n++) { s.bl_tree[n * 2]/*.Freq*/ = 0; }
2743
+
2744
+ s.dyn_ltree[END_BLOCK * 2]/*.Freq*/ = 1;
2745
+ s.opt_len = s.static_len = 0;
2746
+ s.last_lit = s.matches = 0;
2747
+ }
2748
+
2749
+
2750
+ /* ===========================================================================
2751
+ * Flush the bit buffer and align the output on a byte boundary
2752
+ */
2753
+ function bi_windup(s)
2754
+ {
2755
+ if (s.bi_valid > 8) {
2756
+ put_short(s, s.bi_buf);
2757
+ } else if (s.bi_valid > 0) {
2758
+ //put_byte(s, (Byte)s->bi_buf);
2759
+ s.pending_buf[s.pending++] = s.bi_buf;
2760
+ }
2761
+ s.bi_buf = 0;
2762
+ s.bi_valid = 0;
2763
+ }
2764
+
2765
+ /* ===========================================================================
2766
+ * Copy a stored block, storing first the length and its
2767
+ * one's complement if requested.
2768
+ */
2769
+ function copy_block(s, buf, len, header)
2770
+ //DeflateState *s;
2771
+ //charf *buf; /* the input data */
2772
+ //unsigned len; /* its length */
2773
+ //int header; /* true if block header must be written */
2774
+ {
2775
+ bi_windup(s); /* align on byte boundary */
2776
+
2777
+ if (header) {
2778
+ put_short(s, len);
2779
+ put_short(s, ~len);
2780
+ }
2781
+ // while (len--) {
2782
+ // put_byte(s, *buf++);
2783
+ // }
2784
+ utils.arraySet(s.pending_buf, s.window, buf, len, s.pending);
2785
+ s.pending += len;
2786
+ }
2787
+
2788
+ /* ===========================================================================
2789
+ * Compares to subtrees, using the tree depth as tie breaker when
2790
+ * the subtrees have equal frequency. This minimizes the worst case length.
2791
+ */
2792
+ function smaller(tree, n, m, depth) {
2793
+ var _n2 = n * 2;
2794
+ var _m2 = m * 2;
2795
+ return (tree[_n2]/*.Freq*/ < tree[_m2]/*.Freq*/ ||
2796
+ (tree[_n2]/*.Freq*/ === tree[_m2]/*.Freq*/ && depth[n] <= depth[m]));
2797
+ }
2798
+
2799
+ /* ===========================================================================
2800
+ * Restore the heap property by moving down the tree starting at node k,
2801
+ * exchanging a node with the smallest of its two sons if necessary, stopping
2802
+ * when the heap property is re-established (each father smaller than its
2803
+ * two sons).
2804
+ */
2805
+ function pqdownheap(s, tree, k)
2806
+ // deflate_state *s;
2807
+ // ct_data *tree; /* the tree to restore */
2808
+ // int k; /* node to move down */
2809
+ {
2810
+ var v = s.heap[k];
2811
+ var j = k << 1; /* left son of k */
2812
+ while (j <= s.heap_len) {
2813
+ /* Set j to the smallest of the two sons: */
2814
+ if (j < s.heap_len &&
2815
+ smaller(tree, s.heap[j + 1], s.heap[j], s.depth)) {
2816
+ j++;
2817
+ }
2818
+ /* Exit if v is smaller than both sons */
2819
+ if (smaller(tree, v, s.heap[j], s.depth)) { break; }
2820
+
2821
+ /* Exchange v with the smallest son */
2822
+ s.heap[k] = s.heap[j];
2823
+ k = j;
2824
+
2825
+ /* And continue down the tree, setting j to the left son of k */
2826
+ j <<= 1;
2827
+ }
2828
+ s.heap[k] = v;
2829
+ }
2830
+
2831
+
2832
+ // inlined manually
2833
+ // var SMALLEST = 1;
2834
+
2835
+ /* ===========================================================================
2836
+ * Send the block data compressed using the given Huffman trees
2837
+ */
2838
+ function compress_block(s, ltree, dtree)
2839
+ // deflate_state *s;
2840
+ // const ct_data *ltree; /* literal tree */
2841
+ // const ct_data *dtree; /* distance tree */
2842
+ {
2843
+ var dist; /* distance of matched string */
2844
+ var lc; /* match length or unmatched char (if dist == 0) */
2845
+ var lx = 0; /* running index in l_buf */
2846
+ var code; /* the code to send */
2847
+ var extra; /* number of extra bits to send */
2848
+
2849
+ if (s.last_lit !== 0) {
2850
+ do {
2851
+ dist = (s.pending_buf[s.d_buf + lx * 2] << 8) | (s.pending_buf[s.d_buf + lx * 2 + 1]);
2852
+ lc = s.pending_buf[s.l_buf + lx];
2853
+ lx++;
2854
+
2855
+ if (dist === 0) {
2856
+ send_code(s, lc, ltree); /* send a literal byte */
2857
+ //Tracecv(isgraph(lc), (stderr," '%c' ", lc));
2858
+ } else {
2859
+ /* Here, lc is the match length - MIN_MATCH */
2860
+ code = _length_code[lc];
2861
+ send_code(s, code + LITERALS + 1, ltree); /* send the length code */
2862
+ extra = extra_lbits[code];
2863
+ if (extra !== 0) {
2864
+ lc -= base_length[code];
2865
+ send_bits(s, lc, extra); /* send the extra length bits */
2866
+ }
2867
+ dist--; /* dist is now the match distance - 1 */
2868
+ code = d_code(dist);
2869
+ //Assert (code < D_CODES, "bad d_code");
2870
+
2871
+ send_code(s, code, dtree); /* send the distance code */
2872
+ extra = extra_dbits[code];
2873
+ if (extra !== 0) {
2874
+ dist -= base_dist[code];
2875
+ send_bits(s, dist, extra); /* send the extra distance bits */
2876
+ }
2877
+ } /* literal or match pair ? */
2878
+
2879
+ /* Check that the overlay between pending_buf and d_buf+l_buf is ok: */
2880
+ //Assert((uInt)(s->pending) < s->lit_bufsize + 2*lx,
2881
+ // "pendingBuf overflow");
2882
+
2883
+ } while (lx < s.last_lit);
2884
+ }
2885
+
2886
+ send_code(s, END_BLOCK, ltree);
2887
+ }
2888
+
2889
+
2890
+ /* ===========================================================================
2891
+ * Construct one Huffman tree and assigns the code bit strings and lengths.
2892
+ * Update the total bit length for the current block.
2893
+ * IN assertion: the field freq is set for all tree elements.
2894
+ * OUT assertions: the fields len and code are set to the optimal bit length
2895
+ * and corresponding code. The length opt_len is updated; static_len is
2896
+ * also updated if stree is not null. The field max_code is set.
2897
+ */
2898
+ function build_tree(s, desc)
2899
+ // deflate_state *s;
2900
+ // tree_desc *desc; /* the tree descriptor */
2901
+ {
2902
+ var tree = desc.dyn_tree;
2903
+ var stree = desc.stat_desc.static_tree;
2904
+ var has_stree = desc.stat_desc.has_stree;
2905
+ var elems = desc.stat_desc.elems;
2906
+ var n, m; /* iterate over heap elements */
2907
+ var max_code = -1; /* largest code with non zero frequency */
2908
+ var node; /* new node being created */
2909
+
2910
+ /* Construct the initial heap, with least frequent element in
2911
+ * heap[SMALLEST]. The sons of heap[n] are heap[2*n] and heap[2*n+1].
2912
+ * heap[0] is not used.
2913
+ */
2914
+ s.heap_len = 0;
2915
+ s.heap_max = HEAP_SIZE;
2916
+
2917
+ for (n = 0; n < elems; n++) {
2918
+ if (tree[n * 2]/*.Freq*/ !== 0) {
2919
+ s.heap[++s.heap_len] = max_code = n;
2920
+ s.depth[n] = 0;
2921
+
2922
+ } else {
2923
+ tree[n * 2 + 1]/*.Len*/ = 0;
2924
+ }
2925
+ }
2926
+
2927
+ /* The pkzip format requires that at least one distance code exists,
2928
+ * and that at least one bit should be sent even if there is only one
2929
+ * possible code. So to avoid special checks later on we force at least
2930
+ * two codes of non zero frequency.
2931
+ */
2932
+ while (s.heap_len < 2) {
2933
+ node = s.heap[++s.heap_len] = (max_code < 2 ? ++max_code : 0);
2934
+ tree[node * 2]/*.Freq*/ = 1;
2935
+ s.depth[node] = 0;
2936
+ s.opt_len--;
2937
+
2938
+ if (has_stree) {
2939
+ s.static_len -= stree[node * 2 + 1]/*.Len*/;
2940
+ }
2941
+ /* node is 0 or 1 so it does not have extra bits */
2942
+ }
2943
+ desc.max_code = max_code;
2944
+
2945
+ /* The elements heap[heap_len/2+1 .. heap_len] are leaves of the tree,
2946
+ * establish sub-heaps of increasing lengths:
2947
+ */
2948
+ for (n = (s.heap_len >> 1/*int /2*/); n >= 1; n--) { pqdownheap(s, tree, n); }
2949
+
2950
+ /* Construct the Huffman tree by repeatedly combining the least two
2951
+ * frequent nodes.
2952
+ */
2953
+ node = elems; /* next internal node of the tree */
2954
+ do {
2955
+ //pqremove(s, tree, n); /* n = node of least frequency */
2956
+ /*** pqremove ***/
2957
+ n = s.heap[1/*SMALLEST*/];
2958
+ s.heap[1/*SMALLEST*/] = s.heap[s.heap_len--];
2959
+ pqdownheap(s, tree, 1/*SMALLEST*/);
2960
+ /***/
2961
+
2962
+ m = s.heap[1/*SMALLEST*/]; /* m = node of next least frequency */
2963
+
2964
+ s.heap[--s.heap_max] = n; /* keep the nodes sorted by frequency */
2965
+ s.heap[--s.heap_max] = m;
2966
+
2967
+ /* Create a new node father of n and m */
2968
+ tree[node * 2]/*.Freq*/ = tree[n * 2]/*.Freq*/ + tree[m * 2]/*.Freq*/;
2969
+ s.depth[node] = (s.depth[n] >= s.depth[m] ? s.depth[n] : s.depth[m]) + 1;
2970
+ tree[n * 2 + 1]/*.Dad*/ = tree[m * 2 + 1]/*.Dad*/ = node;
2971
+
2972
+ /* and insert the new node in the heap */
2973
+ s.heap[1/*SMALLEST*/] = node++;
2974
+ pqdownheap(s, tree, 1/*SMALLEST*/);
2975
+
2976
+ } while (s.heap_len >= 2);
2977
+
2978
+ s.heap[--s.heap_max] = s.heap[1/*SMALLEST*/];
2979
+
2980
+ /* At this point, the fields freq and dad are set. We can now
2981
+ * generate the bit lengths.
2982
+ */
2983
+ gen_bitlen(s, desc);
2984
+
2985
+ /* The field len is now set, we can generate the bit codes */
2986
+ gen_codes(tree, max_code, s.bl_count);
2987
+ }
2988
+
2989
+
2990
+ /* ===========================================================================
2991
+ * Scan a literal or distance tree to determine the frequencies of the codes
2992
+ * in the bit length tree.
2993
+ */
2994
+ function scan_tree(s, tree, max_code)
2995
+ // deflate_state *s;
2996
+ // ct_data *tree; /* the tree to be scanned */
2997
+ // int max_code; /* and its largest code of non zero frequency */
2998
+ {
2999
+ var n; /* iterates over all tree elements */
3000
+ var prevlen = -1; /* last emitted length */
3001
+ var curlen; /* length of current code */
3002
+
3003
+ var nextlen = tree[0 * 2 + 1]/*.Len*/; /* length of next code */
3004
+
3005
+ var count = 0; /* repeat count of the current code */
3006
+ var max_count = 7; /* max repeat count */
3007
+ var min_count = 4; /* min repeat count */
3008
+
3009
+ if (nextlen === 0) {
3010
+ max_count = 138;
3011
+ min_count = 3;
3012
+ }
3013
+ tree[(max_code + 1) * 2 + 1]/*.Len*/ = 0xffff; /* guard */
3014
+
3015
+ for (n = 0; n <= max_code; n++) {
3016
+ curlen = nextlen;
3017
+ nextlen = tree[(n + 1) * 2 + 1]/*.Len*/;
3018
+
3019
+ if (++count < max_count && curlen === nextlen) {
3020
+ continue;
3021
+
3022
+ } else if (count < min_count) {
3023
+ s.bl_tree[curlen * 2]/*.Freq*/ += count;
3024
+
3025
+ } else if (curlen !== 0) {
3026
+
3027
+ if (curlen !== prevlen) { s.bl_tree[curlen * 2]/*.Freq*/++; }
3028
+ s.bl_tree[REP_3_6 * 2]/*.Freq*/++;
3029
+
3030
+ } else if (count <= 10) {
3031
+ s.bl_tree[REPZ_3_10 * 2]/*.Freq*/++;
3032
+
3033
+ } else {
3034
+ s.bl_tree[REPZ_11_138 * 2]/*.Freq*/++;
3035
+ }
3036
+
3037
+ count = 0;
3038
+ prevlen = curlen;
3039
+
3040
+ if (nextlen === 0) {
3041
+ max_count = 138;
3042
+ min_count = 3;
3043
+
3044
+ } else if (curlen === nextlen) {
3045
+ max_count = 6;
3046
+ min_count = 3;
3047
+
3048
+ } else {
3049
+ max_count = 7;
3050
+ min_count = 4;
3051
+ }
3052
+ }
3053
+ }
3054
+
3055
+
3056
+ /* ===========================================================================
3057
+ * Send a literal or distance tree in compressed form, using the codes in
3058
+ * bl_tree.
3059
+ */
3060
+ function send_tree(s, tree, max_code)
3061
+ // deflate_state *s;
3062
+ // ct_data *tree; /* the tree to be scanned */
3063
+ // int max_code; /* and its largest code of non zero frequency */
3064
+ {
3065
+ var n; /* iterates over all tree elements */
3066
+ var prevlen = -1; /* last emitted length */
3067
+ var curlen; /* length of current code */
3068
+
3069
+ var nextlen = tree[0 * 2 + 1]/*.Len*/; /* length of next code */
3070
+
3071
+ var count = 0; /* repeat count of the current code */
3072
+ var max_count = 7; /* max repeat count */
3073
+ var min_count = 4; /* min repeat count */
3074
+
3075
+ /* tree[max_code+1].Len = -1; */ /* guard already set */
3076
+ if (nextlen === 0) {
3077
+ max_count = 138;
3078
+ min_count = 3;
3079
+ }
3080
+
3081
+ for (n = 0; n <= max_code; n++) {
3082
+ curlen = nextlen;
3083
+ nextlen = tree[(n + 1) * 2 + 1]/*.Len*/;
3084
+
3085
+ if (++count < max_count && curlen === nextlen) {
3086
+ continue;
3087
+
3088
+ } else if (count < min_count) {
3089
+ do { send_code(s, curlen, s.bl_tree); } while (--count !== 0);
3090
+
3091
+ } else if (curlen !== 0) {
3092
+ if (curlen !== prevlen) {
3093
+ send_code(s, curlen, s.bl_tree);
3094
+ count--;
3095
+ }
3096
+ //Assert(count >= 3 && count <= 6, " 3_6?");
3097
+ send_code(s, REP_3_6, s.bl_tree);
3098
+ send_bits(s, count - 3, 2);
3099
+
3100
+ } else if (count <= 10) {
3101
+ send_code(s, REPZ_3_10, s.bl_tree);
3102
+ send_bits(s, count - 3, 3);
3103
+
3104
+ } else {
3105
+ send_code(s, REPZ_11_138, s.bl_tree);
3106
+ send_bits(s, count - 11, 7);
3107
+ }
3108
+
3109
+ count = 0;
3110
+ prevlen = curlen;
3111
+ if (nextlen === 0) {
3112
+ max_count = 138;
3113
+ min_count = 3;
3114
+
3115
+ } else if (curlen === nextlen) {
3116
+ max_count = 6;
3117
+ min_count = 3;
3118
+
3119
+ } else {
3120
+ max_count = 7;
3121
+ min_count = 4;
3122
+ }
3123
+ }
3124
+ }
3125
+
3126
+
3127
+ /* ===========================================================================
3128
+ * Construct the Huffman tree for the bit lengths and return the index in
3129
+ * bl_order of the last bit length code to send.
3130
+ */
3131
+ function build_bl_tree(s) {
3132
+ var max_blindex; /* index of last bit length code of non zero freq */
3133
+
3134
+ /* Determine the bit length frequencies for literal and distance trees */
3135
+ scan_tree(s, s.dyn_ltree, s.l_desc.max_code);
3136
+ scan_tree(s, s.dyn_dtree, s.d_desc.max_code);
3137
+
3138
+ /* Build the bit length tree: */
3139
+ build_tree(s, s.bl_desc);
3140
+ /* opt_len now includes the length of the tree representations, except
3141
+ * the lengths of the bit lengths codes and the 5+5+4 bits for the counts.
3142
+ */
3143
+
3144
+ /* Determine the number of bit length codes to send. The pkzip format
3145
+ * requires that at least 4 bit length codes be sent. (appnote.txt says
3146
+ * 3 but the actual value used is 4.)
3147
+ */
3148
+ for (max_blindex = BL_CODES - 1; max_blindex >= 3; max_blindex--) {
3149
+ if (s.bl_tree[bl_order[max_blindex] * 2 + 1]/*.Len*/ !== 0) {
3150
+ break;
3151
+ }
3152
+ }
3153
+ /* Update opt_len to include the bit length tree and counts */
3154
+ s.opt_len += 3 * (max_blindex + 1) + 5 + 5 + 4;
3155
+ //Tracev((stderr, "\ndyn trees: dyn %ld, stat %ld",
3156
+ // s->opt_len, s->static_len));
3157
+
3158
+ return max_blindex;
3159
+ }
3160
+
3161
+
3162
+ /* ===========================================================================
3163
+ * Send the header for a block using dynamic Huffman trees: the counts, the
3164
+ * lengths of the bit length codes, the literal tree and the distance tree.
3165
+ * IN assertion: lcodes >= 257, dcodes >= 1, blcodes >= 4.
3166
+ */
3167
+ function send_all_trees(s, lcodes, dcodes, blcodes)
3168
+ // deflate_state *s;
3169
+ // int lcodes, dcodes, blcodes; /* number of codes for each tree */
3170
+ {
3171
+ var rank; /* index in bl_order */
3172
+
3173
+ //Assert (lcodes >= 257 && dcodes >= 1 && blcodes >= 4, "not enough codes");
3174
+ //Assert (lcodes <= L_CODES && dcodes <= D_CODES && blcodes <= BL_CODES,
3175
+ // "too many codes");
3176
+ //Tracev((stderr, "\nbl counts: "));
3177
+ send_bits(s, lcodes - 257, 5); /* not +255 as stated in appnote.txt */
3178
+ send_bits(s, dcodes - 1, 5);
3179
+ send_bits(s, blcodes - 4, 4); /* not -3 as stated in appnote.txt */
3180
+ for (rank = 0; rank < blcodes; rank++) {
3181
+ //Tracev((stderr, "\nbl code %2d ", bl_order[rank]));
3182
+ send_bits(s, s.bl_tree[bl_order[rank] * 2 + 1]/*.Len*/, 3);
3183
+ }
3184
+ //Tracev((stderr, "\nbl tree: sent %ld", s->bits_sent));
3185
+
3186
+ send_tree(s, s.dyn_ltree, lcodes - 1); /* literal tree */
3187
+ //Tracev((stderr, "\nlit tree: sent %ld", s->bits_sent));
3188
+
3189
+ send_tree(s, s.dyn_dtree, dcodes - 1); /* distance tree */
3190
+ //Tracev((stderr, "\ndist tree: sent %ld", s->bits_sent));
3191
+ }
3192
+
3193
+
3194
+ /* ===========================================================================
3195
+ * Check if the data type is TEXT or BINARY, using the following algorithm:
3196
+ * - TEXT if the two conditions below are satisfied:
3197
+ * a) There are no non-portable control characters belonging to the
3198
+ * "black list" (0..6, 14..25, 28..31).
3199
+ * b) There is at least one printable character belonging to the
3200
+ * "white list" (9 {TAB}, 10 {LF}, 13 {CR}, 32..255).
3201
+ * - BINARY otherwise.
3202
+ * - The following partially-portable control characters form a
3203
+ * "gray list" that is ignored in this detection algorithm:
3204
+ * (7 {BEL}, 8 {BS}, 11 {VT}, 12 {FF}, 26 {SUB}, 27 {ESC}).
3205
+ * IN assertion: the fields Freq of dyn_ltree are set.
3206
+ */
3207
+ function detect_data_type(s) {
3208
+ /* black_mask is the bit mask of black-listed bytes
3209
+ * set bits 0..6, 14..25, and 28..31
3210
+ * 0xf3ffc07f = binary 11110011111111111100000001111111
3211
+ */
3212
+ var black_mask = 0xf3ffc07f;
3213
+ var n;
3214
+
3215
+ /* Check for non-textual ("black-listed") bytes. */
3216
+ for (n = 0; n <= 31; n++, black_mask >>>= 1) {
3217
+ if ((black_mask & 1) && (s.dyn_ltree[n * 2]/*.Freq*/ !== 0)) {
3218
+ return Z_BINARY;
3219
+ }
3220
+ }
3221
+
3222
+ /* Check for textual ("white-listed") bytes. */
3223
+ if (s.dyn_ltree[9 * 2]/*.Freq*/ !== 0 || s.dyn_ltree[10 * 2]/*.Freq*/ !== 0 ||
3224
+ s.dyn_ltree[13 * 2]/*.Freq*/ !== 0) {
3225
+ return Z_TEXT;
3226
+ }
3227
+ for (n = 32; n < LITERALS; n++) {
3228
+ if (s.dyn_ltree[n * 2]/*.Freq*/ !== 0) {
3229
+ return Z_TEXT;
3230
+ }
3231
+ }
3232
+
3233
+ /* There are no "black-listed" or "white-listed" bytes:
3234
+ * this stream either is empty or has tolerated ("gray-listed") bytes only.
3235
+ */
3236
+ return Z_BINARY;
3237
+ }
3238
+
3239
+
3240
+ var static_init_done = false;
3241
+
3242
+ /* ===========================================================================
3243
+ * Initialize the tree data structures for a new zlib stream.
3244
+ */
3245
+ function _tr_init(s)
3246
+ {
3247
+
3248
+ if (!static_init_done) {
3249
+ tr_static_init();
3250
+ static_init_done = true;
3251
+ }
3252
+
3253
+ s.l_desc = new TreeDesc(s.dyn_ltree, static_l_desc);
3254
+ s.d_desc = new TreeDesc(s.dyn_dtree, static_d_desc);
3255
+ s.bl_desc = new TreeDesc(s.bl_tree, static_bl_desc);
3256
+
3257
+ s.bi_buf = 0;
3258
+ s.bi_valid = 0;
3259
+
3260
+ /* Initialize the first block of the first file: */
3261
+ init_block(s);
3262
+ }
3263
+
3264
+
3265
+ /* ===========================================================================
3266
+ * Send a stored block
3267
+ */
3268
+ function _tr_stored_block(s, buf, stored_len, last)
3269
+ //DeflateState *s;
3270
+ //charf *buf; /* input block */
3271
+ //ulg stored_len; /* length of input block */
3272
+ //int last; /* one if this is the last block for a file */
3273
+ {
3274
+ send_bits(s, (STORED_BLOCK << 1) + (last ? 1 : 0), 3); /* send block type */
3275
+ copy_block(s, buf, stored_len, true); /* with header */
3276
+ }
3277
+
3278
+
3279
+ /* ===========================================================================
3280
+ * Send one empty static block to give enough lookahead for inflate.
3281
+ * This takes 10 bits, of which 7 may remain in the bit buffer.
3282
+ */
3283
+ function _tr_align(s) {
3284
+ send_bits(s, STATIC_TREES << 1, 3);
3285
+ send_code(s, END_BLOCK, static_ltree);
3286
+ bi_flush(s);
3287
+ }
3288
+
3289
+
3290
+ /* ===========================================================================
3291
+ * Determine the best encoding for the current block: dynamic trees, static
3292
+ * trees or store, and output the encoded block to the zip file.
3293
+ */
3294
+ function _tr_flush_block(s, buf, stored_len, last)
3295
+ //DeflateState *s;
3296
+ //charf *buf; /* input block, or NULL if too old */
3297
+ //ulg stored_len; /* length of input block */
3298
+ //int last; /* one if this is the last block for a file */
3299
+ {
3300
+ var opt_lenb, static_lenb; /* opt_len and static_len in bytes */
3301
+ var max_blindex = 0; /* index of last bit length code of non zero freq */
3302
+
3303
+ /* Build the Huffman trees unless a stored block is forced */
3304
+ if (s.level > 0) {
3305
+
3306
+ /* Check if the file is binary or text */
3307
+ if (s.strm.data_type === Z_UNKNOWN) {
3308
+ s.strm.data_type = detect_data_type(s);
3309
+ }
3310
+
3311
+ /* Construct the literal and distance trees */
3312
+ build_tree(s, s.l_desc);
3313
+ // Tracev((stderr, "\nlit data: dyn %ld, stat %ld", s->opt_len,
3314
+ // s->static_len));
3315
+
3316
+ build_tree(s, s.d_desc);
3317
+ // Tracev((stderr, "\ndist data: dyn %ld, stat %ld", s->opt_len,
3318
+ // s->static_len));
3319
+ /* At this point, opt_len and static_len are the total bit lengths of
3320
+ * the compressed block data, excluding the tree representations.
3321
+ */
3322
+
3323
+ /* Build the bit length tree for the above two trees, and get the index
3324
+ * in bl_order of the last bit length code to send.
3325
+ */
3326
+ max_blindex = build_bl_tree(s);
3327
+
3328
+ /* Determine the best encoding. Compute the block lengths in bytes. */
3329
+ opt_lenb = (s.opt_len + 3 + 7) >>> 3;
3330
+ static_lenb = (s.static_len + 3 + 7) >>> 3;
3331
+
3332
+ // Tracev((stderr, "\nopt %lu(%lu) stat %lu(%lu) stored %lu lit %u ",
3333
+ // opt_lenb, s->opt_len, static_lenb, s->static_len, stored_len,
3334
+ // s->last_lit));
3335
+
3336
+ if (static_lenb <= opt_lenb) { opt_lenb = static_lenb; }
3337
+
3338
+ } else {
3339
+ // Assert(buf != (char*)0, "lost buf");
3340
+ opt_lenb = static_lenb = stored_len + 5; /* force a stored block */
3341
+ }
3342
+
3343
+ if ((stored_len + 4 <= opt_lenb) && (buf !== -1)) {
3344
+ /* 4: two words for the lengths */
3345
+
3346
+ /* The test buf != NULL is only necessary if LIT_BUFSIZE > WSIZE.
3347
+ * Otherwise we can't have processed more than WSIZE input bytes since
3348
+ * the last block flush, because compression would have been
3349
+ * successful. If LIT_BUFSIZE <= WSIZE, it is never too late to
3350
+ * transform a block into a stored block.
3351
+ */
3352
+ _tr_stored_block(s, buf, stored_len, last);
3353
+
3354
+ } else if (s.strategy === Z_FIXED || static_lenb === opt_lenb) {
3355
+
3356
+ send_bits(s, (STATIC_TREES << 1) + (last ? 1 : 0), 3);
3357
+ compress_block(s, static_ltree, static_dtree);
3358
+
3359
+ } else {
3360
+ send_bits(s, (DYN_TREES << 1) + (last ? 1 : 0), 3);
3361
+ send_all_trees(s, s.l_desc.max_code + 1, s.d_desc.max_code + 1, max_blindex + 1);
3362
+ compress_block(s, s.dyn_ltree, s.dyn_dtree);
3363
+ }
3364
+ // Assert (s->compressed_len == s->bits_sent, "bad compressed size");
3365
+ /* The above check is made mod 2^32, for files larger than 512 MB
3366
+ * and uLong implemented on 32 bits.
3367
+ */
3368
+ init_block(s);
3369
+
3370
+ if (last) {
3371
+ bi_windup(s);
3372
+ }
3373
+ // Tracev((stderr,"\ncomprlen %lu(%lu) ", s->compressed_len>>3,
3374
+ // s->compressed_len-7*last));
3375
+ }
3376
+
3377
+ /* ===========================================================================
3378
+ * Save the match info and tally the frequency counts. Return true if
3379
+ * the current block must be flushed.
3380
+ */
3381
+ function _tr_tally(s, dist, lc)
3382
+ // deflate_state *s;
3383
+ // unsigned dist; /* distance of matched string */
3384
+ // unsigned lc; /* match length-MIN_MATCH or unmatched char (if dist==0) */
3385
+ {
3386
+ //var out_length, in_length, dcode;
3387
+
3388
+ s.pending_buf[s.d_buf + s.last_lit * 2] = (dist >>> 8) & 0xff;
3389
+ s.pending_buf[s.d_buf + s.last_lit * 2 + 1] = dist & 0xff;
3390
+
3391
+ s.pending_buf[s.l_buf + s.last_lit] = lc & 0xff;
3392
+ s.last_lit++;
3393
+
3394
+ if (dist === 0) {
3395
+ /* lc is the unmatched char */
3396
+ s.dyn_ltree[lc * 2]/*.Freq*/++;
3397
+ } else {
3398
+ s.matches++;
3399
+ /* Here, lc is the match length - MIN_MATCH */
3400
+ dist--; /* dist = match distance - 1 */
3401
+ //Assert((ush)dist < (ush)MAX_DIST(s) &&
3402
+ // (ush)lc <= (ush)(MAX_MATCH-MIN_MATCH) &&
3403
+ // (ush)d_code(dist) < (ush)D_CODES, "_tr_tally: bad match");
3404
+
3405
+ s.dyn_ltree[(_length_code[lc] + LITERALS + 1) * 2]/*.Freq*/++;
3406
+ s.dyn_dtree[d_code(dist) * 2]/*.Freq*/++;
3407
+ }
3408
+
3409
+ // (!) This block is disabled in zlib defailts,
3410
+ // don't enable it for binary compatibility
3411
+
3412
+ //#ifdef TRUNCATE_BLOCK
3413
+ // /* Try to guess if it is profitable to stop the current block here */
3414
+ // if ((s.last_lit & 0x1fff) === 0 && s.level > 2) {
3415
+ // /* Compute an upper bound for the compressed length */
3416
+ // out_length = s.last_lit*8;
3417
+ // in_length = s.strstart - s.block_start;
3418
+ //
3419
+ // for (dcode = 0; dcode < D_CODES; dcode++) {
3420
+ // out_length += s.dyn_dtree[dcode*2]/*.Freq*/ * (5 + extra_dbits[dcode]);
3421
+ // }
3422
+ // out_length >>>= 3;
3423
+ // //Tracev((stderr,"\nlast_lit %u, in %ld, out ~%ld(%ld%%) ",
3424
+ // // s->last_lit, in_length, out_length,
3425
+ // // 100L - out_length*100L/in_length));
3426
+ // if (s.matches < (s.last_lit>>1)/*int /2*/ && out_length < (in_length>>1)/*int /2*/) {
3427
+ // return true;
3428
+ // }
3429
+ // }
3430
+ //#endif
3431
+
3432
+ return (s.last_lit === s.lit_bufsize - 1);
3433
+ /* We avoid equality with lit_bufsize because of wraparound at 64K
3434
+ * on 16 bit machines and because stored blocks are restricted to
3435
+ * 64K-1 bytes.
3436
+ */
3437
+ }
3438
+
3439
+ exports._tr_init = _tr_init;
3440
+ exports._tr_stored_block = _tr_stored_block;
3441
+ exports._tr_flush_block = _tr_flush_block;
3442
+ exports._tr_tally = _tr_tally;
3443
+ exports._tr_align = _tr_align;
3444
+
3445
+ },{"../utils/common":1}],8:[function(require,module,exports){
3446
+ 'use strict';
3447
+
3448
+
3449
+ function ZStream() {
3450
+ /* next input byte */
3451
+ this.input = null; // JS specific, because we have no pointers
3452
+ this.next_in = 0;
3453
+ /* number of bytes available at input */
3454
+ this.avail_in = 0;
3455
+ /* total number of input bytes read so far */
3456
+ this.total_in = 0;
3457
+ /* next output byte should be put there */
3458
+ this.output = null; // JS specific, because we have no pointers
3459
+ this.next_out = 0;
3460
+ /* remaining free space at output */
3461
+ this.avail_out = 0;
3462
+ /* total number of bytes output so far */
3463
+ this.total_out = 0;
3464
+ /* last error message, NULL if no error */
3465
+ this.msg = ''/*Z_NULL*/;
3466
+ /* not visible by applications */
3467
+ this.state = null;
3468
+ /* best guess about the data type: binary or text */
3469
+ this.data_type = 2/*Z_UNKNOWN*/;
3470
+ /* adler32 value of the uncompressed data */
3471
+ this.adler = 0;
3472
+ }
3473
+
3474
+ module.exports = ZStream;
3475
+
3476
+ },{}],"/lib/deflate.js":[function(require,module,exports){
3477
+ 'use strict';
3478
+
3479
+
3480
+ var zlib_deflate = require('./zlib/deflate');
3481
+ var utils = require('./utils/common');
3482
+ var strings = require('./utils/strings');
3483
+ var msg = require('./zlib/messages');
3484
+ var ZStream = require('./zlib/zstream');
3485
+
3486
+ var toString = Object.prototype.toString;
3487
+
3488
+ /* Public constants ==========================================================*/
3489
+ /* ===========================================================================*/
3490
+
3491
+ var Z_NO_FLUSH = 0;
3492
+ var Z_FINISH = 4;
3493
+
3494
+ var Z_OK = 0;
3495
+ var Z_STREAM_END = 1;
3496
+ var Z_SYNC_FLUSH = 2;
3497
+
3498
+ var Z_DEFAULT_COMPRESSION = -1;
3499
+
3500
+ var Z_DEFAULT_STRATEGY = 0;
3501
+
3502
+ var Z_DEFLATED = 8;
3503
+
3504
+ /* ===========================================================================*/
3505
+
3506
+
3507
+ /**
3508
+ * class Deflate
3509
+ *
3510
+ * Generic JS-style wrapper for zlib calls. If you don't need
3511
+ * streaming behaviour - use more simple functions: [[deflate]],
3512
+ * [[deflateRaw]] and [[gzip]].
3513
+ **/
3514
+
3515
+ /* internal
3516
+ * Deflate.chunks -> Array
3517
+ *
3518
+ * Chunks of output data, if [[Deflate#onData]] not overriden.
3519
+ **/
3520
+
3521
+ /**
3522
+ * Deflate.result -> Uint8Array|Array
3523
+ *
3524
+ * Compressed result, generated by default [[Deflate#onData]]
3525
+ * and [[Deflate#onEnd]] handlers. Filled after you push last chunk
3526
+ * (call [[Deflate#push]] with `Z_FINISH` / `true` param) or if you
3527
+ * push a chunk with explicit flush (call [[Deflate#push]] with
3528
+ * `Z_SYNC_FLUSH` param).
3529
+ **/
3530
+
3531
+ /**
3532
+ * Deflate.err -> Number
3533
+ *
3534
+ * Error code after deflate finished. 0 (Z_OK) on success.
3535
+ * You will not need it in real life, because deflate errors
3536
+ * are possible only on wrong options or bad `onData` / `onEnd`
3537
+ * custom handlers.
3538
+ **/
3539
+
3540
+ /**
3541
+ * Deflate.msg -> String
3542
+ *
3543
+ * Error message, if [[Deflate.err]] != 0
3544
+ **/
3545
+
3546
+
3547
+ /**
3548
+ * new Deflate(options)
3549
+ * - options (Object): zlib deflate options.
3550
+ *
3551
+ * Creates new deflator instance with specified params. Throws exception
3552
+ * on bad params. Supported options:
3553
+ *
3554
+ * - `level`
3555
+ * - `windowBits`
3556
+ * - `memLevel`
3557
+ * - `strategy`
3558
+ * - `dictionary`
3559
+ *
3560
+ * [http://zlib.net/manual.html#Advanced](http://zlib.net/manual.html#Advanced)
3561
+ * for more information on these.
3562
+ *
3563
+ * Additional options, for internal needs:
3564
+ *
3565
+ * - `chunkSize` - size of generated data chunks (16K by default)
3566
+ * - `raw` (Boolean) - do raw deflate
3567
+ * - `gzip` (Boolean) - create gzip wrapper
3568
+ * - `to` (String) - if equal to 'string', then result will be "binary string"
3569
+ * (each char code [0..255])
3570
+ * - `header` (Object) - custom header for gzip
3571
+ * - `text` (Boolean) - true if compressed data believed to be text
3572
+ * - `time` (Number) - modification time, unix timestamp
3573
+ * - `os` (Number) - operation system code
3574
+ * - `extra` (Array) - array of bytes with extra data (max 65536)
3575
+ * - `name` (String) - file name (binary string)
3576
+ * - `comment` (String) - comment (binary string)
3577
+ * - `hcrc` (Boolean) - true if header crc should be added
3578
+ *
3579
+ * ##### Example:
3580
+ *
3581
+ * ```javascript
3582
+ * var pako = require('pako')
3583
+ * , chunk1 = Uint8Array([1,2,3,4,5,6,7,8,9])
3584
+ * , chunk2 = Uint8Array([10,11,12,13,14,15,16,17,18,19]);
3585
+ *
3586
+ * var deflate = new pako.Deflate({ level: 3});
3587
+ *
3588
+ * deflate.push(chunk1, false);
3589
+ * deflate.push(chunk2, true); // true -> last chunk
3590
+ *
3591
+ * if (deflate.err) { throw new Error(deflate.err); }
3592
+ *
3593
+ * console.log(deflate.result);
3594
+ * ```
3595
+ **/
3596
+ function Deflate(options) {
3597
+ if (!(this instanceof Deflate)) return new Deflate(options);
3598
+
3599
+ this.options = utils.assign({
3600
+ level: Z_DEFAULT_COMPRESSION,
3601
+ method: Z_DEFLATED,
3602
+ chunkSize: 16384,
3603
+ windowBits: 15,
3604
+ memLevel: 8,
3605
+ strategy: Z_DEFAULT_STRATEGY,
3606
+ to: ''
3607
+ }, options || {});
3608
+
3609
+ var opt = this.options;
3610
+
3611
+ if (opt.raw && (opt.windowBits > 0)) {
3612
+ opt.windowBits = -opt.windowBits;
3613
+ }
3614
+
3615
+ else if (opt.gzip && (opt.windowBits > 0) && (opt.windowBits < 16)) {
3616
+ opt.windowBits += 16;
3617
+ }
3618
+
3619
+ this.err = 0; // error code, if happens (0 = Z_OK)
3620
+ this.msg = ''; // error message
3621
+ this.ended = false; // used to avoid multiple onEnd() calls
3622
+ this.chunks = []; // chunks of compressed data
3623
+
3624
+ this.strm = new ZStream();
3625
+ this.strm.avail_out = 0;
3626
+
3627
+ var status = zlib_deflate.deflateInit2(
3628
+ this.strm,
3629
+ opt.level,
3630
+ opt.method,
3631
+ opt.windowBits,
3632
+ opt.memLevel,
3633
+ opt.strategy
3634
+ );
3635
+
3636
+ if (status !== Z_OK) {
3637
+ throw new Error(msg[status]);
3638
+ }
3639
+
3640
+ if (opt.header) {
3641
+ zlib_deflate.deflateSetHeader(this.strm, opt.header);
3642
+ }
3643
+
3644
+ if (opt.dictionary) {
3645
+ var dict;
3646
+ // Convert data if needed
3647
+ if (typeof opt.dictionary === 'string') {
3648
+ // If we need to compress text, change encoding to utf8.
3649
+ dict = strings.string2buf(opt.dictionary);
3650
+ } else if (toString.call(opt.dictionary) === '[object ArrayBuffer]') {
3651
+ dict = new Uint8Array(opt.dictionary);
3652
+ } else {
3653
+ dict = opt.dictionary;
3654
+ }
3655
+
3656
+ status = zlib_deflate.deflateSetDictionary(this.strm, dict);
3657
+
3658
+ if (status !== Z_OK) {
3659
+ throw new Error(msg[status]);
3660
+ }
3661
+
3662
+ this._dict_set = true;
3663
+ }
3664
+ }
3665
+
3666
+ /**
3667
+ * Deflate#push(data[, mode]) -> Boolean
3668
+ * - data (Uint8Array|Array|ArrayBuffer|String): input data. Strings will be
3669
+ * converted to utf8 byte sequence.
3670
+ * - mode (Number|Boolean): 0..6 for corresponding Z_NO_FLUSH..Z_TREE modes.
3671
+ * See constants. Skipped or `false` means Z_NO_FLUSH, `true` meansh Z_FINISH.
3672
+ *
3673
+ * Sends input data to deflate pipe, generating [[Deflate#onData]] calls with
3674
+ * new compressed chunks. Returns `true` on success. The last data block must have
3675
+ * mode Z_FINISH (or `true`). That will flush internal pending buffers and call
3676
+ * [[Deflate#onEnd]]. For interim explicit flushes (without ending the stream) you
3677
+ * can use mode Z_SYNC_FLUSH, keeping the compression context.
3678
+ *
3679
+ * On fail call [[Deflate#onEnd]] with error code and return false.
3680
+ *
3681
+ * We strongly recommend to use `Uint8Array` on input for best speed (output
3682
+ * array format is detected automatically). Also, don't skip last param and always
3683
+ * use the same type in your code (boolean or number). That will improve JS speed.
3684
+ *
3685
+ * For regular `Array`-s make sure all elements are [0..255].
3686
+ *
3687
+ * ##### Example
3688
+ *
3689
+ * ```javascript
3690
+ * push(chunk, false); // push one of data chunks
3691
+ * ...
3692
+ * push(chunk, true); // push last chunk
3693
+ * ```
3694
+ **/
3695
+ Deflate.prototype.push = function (data, mode) {
3696
+ var strm = this.strm;
3697
+ var chunkSize = this.options.chunkSize;
3698
+ var status, _mode;
3699
+
3700
+ if (this.ended) { return false; }
3701
+
3702
+ _mode = (mode === ~~mode) ? mode : ((mode === true) ? Z_FINISH : Z_NO_FLUSH);
3703
+
3704
+ // Convert data if needed
3705
+ if (typeof data === 'string') {
3706
+ // If we need to compress text, change encoding to utf8.
3707
+ strm.input = strings.string2buf(data);
3708
+ } else if (toString.call(data) === '[object ArrayBuffer]') {
3709
+ strm.input = new Uint8Array(data);
3710
+ } else {
3711
+ strm.input = data;
3712
+ }
3713
+
3714
+ strm.next_in = 0;
3715
+ strm.avail_in = strm.input.length;
3716
+
3717
+ do {
3718
+ if (strm.avail_out === 0) {
3719
+ strm.output = new utils.Buf8(chunkSize);
3720
+ strm.next_out = 0;
3721
+ strm.avail_out = chunkSize;
3722
+ }
3723
+ status = zlib_deflate.deflate(strm, _mode); /* no bad return value */
3724
+
3725
+ if (status !== Z_STREAM_END && status !== Z_OK) {
3726
+ this.onEnd(status);
3727
+ this.ended = true;
3728
+ return false;
3729
+ }
3730
+ if (strm.avail_out === 0 || (strm.avail_in === 0 && (_mode === Z_FINISH || _mode === Z_SYNC_FLUSH))) {
3731
+ if (this.options.to === 'string') {
3732
+ this.onData(strings.buf2binstring(utils.shrinkBuf(strm.output, strm.next_out)));
3733
+ } else {
3734
+ this.onData(utils.shrinkBuf(strm.output, strm.next_out));
3735
+ }
3736
+ }
3737
+ } while ((strm.avail_in > 0 || strm.avail_out === 0) && status !== Z_STREAM_END);
3738
+
3739
+ // Finalize on the last chunk.
3740
+ if (_mode === Z_FINISH) {
3741
+ status = zlib_deflate.deflateEnd(this.strm);
3742
+ this.onEnd(status);
3743
+ this.ended = true;
3744
+ return status === Z_OK;
3745
+ }
3746
+
3747
+ // callback interim results if Z_SYNC_FLUSH.
3748
+ if (_mode === Z_SYNC_FLUSH) {
3749
+ this.onEnd(Z_OK);
3750
+ strm.avail_out = 0;
3751
+ return true;
3752
+ }
3753
+
3754
+ return true;
3755
+ };
3756
+
3757
+
3758
+ /**
3759
+ * Deflate#onData(chunk) -> Void
3760
+ * - chunk (Uint8Array|Array|String): ouput data. Type of array depends
3761
+ * on js engine support. When string output requested, each chunk
3762
+ * will be string.
3763
+ *
3764
+ * By default, stores data blocks in `chunks[]` property and glue
3765
+ * those in `onEnd`. Override this handler, if you need another behaviour.
3766
+ **/
3767
+ Deflate.prototype.onData = function (chunk) {
3768
+ this.chunks.push(chunk);
3769
+ };
3770
+
3771
+
3772
+ /**
3773
+ * Deflate#onEnd(status) -> Void
3774
+ * - status (Number): deflate status. 0 (Z_OK) on success,
3775
+ * other if not.
3776
+ *
3777
+ * Called once after you tell deflate that the input stream is
3778
+ * complete (Z_FINISH) or should be flushed (Z_SYNC_FLUSH)
3779
+ * or if an error happened. By default - join collected chunks,
3780
+ * free memory and fill `results` / `err` properties.
3781
+ **/
3782
+ Deflate.prototype.onEnd = function (status) {
3783
+ // On success - join
3784
+ if (status === Z_OK) {
3785
+ if (this.options.to === 'string') {
3786
+ this.result = this.chunks.join('');
3787
+ } else {
3788
+ this.result = utils.flattenChunks(this.chunks);
3789
+ }
3790
+ }
3791
+ this.chunks = [];
3792
+ this.err = status;
3793
+ this.msg = this.strm.msg;
3794
+ };
3795
+
3796
+
3797
+ /**
3798
+ * deflate(data[, options]) -> Uint8Array|Array|String
3799
+ * - data (Uint8Array|Array|String): input data to compress.
3800
+ * - options (Object): zlib deflate options.
3801
+ *
3802
+ * Compress `data` with deflate algorithm and `options`.
3803
+ *
3804
+ * Supported options are:
3805
+ *
3806
+ * - level
3807
+ * - windowBits
3808
+ * - memLevel
3809
+ * - strategy
3810
+ * - dictionary
3811
+ *
3812
+ * [http://zlib.net/manual.html#Advanced](http://zlib.net/manual.html#Advanced)
3813
+ * for more information on these.
3814
+ *
3815
+ * Sugar (options):
3816
+ *
3817
+ * - `raw` (Boolean) - say that we work with raw stream, if you don't wish to specify
3818
+ * negative windowBits implicitly.
3819
+ * - `to` (String) - if equal to 'string', then result will be "binary string"
3820
+ * (each char code [0..255])
3821
+ *
3822
+ * ##### Example:
3823
+ *
3824
+ * ```javascript
3825
+ * var pako = require('pako')
3826
+ * , data = Uint8Array([1,2,3,4,5,6,7,8,9]);
3827
+ *
3828
+ * console.log(pako.deflate(data));
3829
+ * ```
3830
+ **/
3831
+ function deflate(input, options) {
3832
+ var deflator = new Deflate(options);
3833
+
3834
+ deflator.push(input, true);
3835
+
3836
+ // That will never happens, if you don't cheat with options :)
3837
+ if (deflator.err) { throw deflator.msg; }
3838
+
3839
+ return deflator.result;
3840
+ }
3841
+
3842
+
3843
+ /**
3844
+ * deflateRaw(data[, options]) -> Uint8Array|Array|String
3845
+ * - data (Uint8Array|Array|String): input data to compress.
3846
+ * - options (Object): zlib deflate options.
3847
+ *
3848
+ * The same as [[deflate]], but creates raw data, without wrapper
3849
+ * (header and adler32 crc).
3850
+ **/
3851
+ function deflateRaw(input, options) {
3852
+ options = options || {};
3853
+ options.raw = true;
3854
+ return deflate(input, options);
3855
+ }
3856
+
3857
+
3858
+ /**
3859
+ * gzip(data[, options]) -> Uint8Array|Array|String
3860
+ * - data (Uint8Array|Array|String): input data to compress.
3861
+ * - options (Object): zlib deflate options.
3862
+ *
3863
+ * The same as [[deflate]], but create gzip wrapper instead of
3864
+ * deflate one.
3865
+ **/
3866
+ function gzip(input, options) {
3867
+ options = options || {};
3868
+ options.gzip = true;
3869
+ return deflate(input, options);
3870
+ }
3871
+
3872
+
3873
+ exports.Deflate = Deflate;
3874
+ exports.deflate = deflate;
3875
+ exports.deflateRaw = deflateRaw;
3876
+ exports.gzip = gzip;
3877
+
3878
+ },{"./utils/common":1,"./utils/strings":2,"./zlib/deflate":5,"./zlib/messages":6,"./zlib/zstream":8}]},{},[])("/lib/deflate.js")
3879
+ });