condenser 0.0.8 → 0.0.9

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2405) hide show
  1. checksums.yaml +4 -4
  2. data/lib/condenser/asset.rb +37 -2
  3. data/lib/condenser/environment.rb +15 -0
  4. data/lib/condenser/minifiers/node_modules/.bin/uglifyjs +1 -0
  5. data/lib/condenser/minifiers/node_modules/commander/CHANGELOG.md +419 -0
  6. data/lib/condenser/minifiers/node_modules/commander/LICENSE +22 -0
  7. data/lib/condenser/minifiers/node_modules/commander/Readme.md +428 -0
  8. data/lib/condenser/minifiers/node_modules/commander/index.js +1224 -0
  9. data/lib/condenser/minifiers/node_modules/commander/package.json +70 -0
  10. data/lib/condenser/minifiers/node_modules/commander/typings/index.d.ts +310 -0
  11. data/lib/condenser/minifiers/node_modules/source-map/package.json +1 -1
  12. data/lib/condenser/minifiers/node_modules/uglify-js/LICENSE +1 -1
  13. data/lib/condenser/minifiers/node_modules/uglify-js/README.md +50 -33
  14. data/lib/condenser/minifiers/node_modules/uglify-js/bin/uglifyjs +51 -47
  15. data/lib/condenser/minifiers/node_modules/uglify-js/lib/ast.js +151 -96
  16. data/lib/condenser/minifiers/node_modules/uglify-js/lib/compress.js +3264 -1761
  17. data/lib/condenser/minifiers/node_modules/uglify-js/lib/minify.js +79 -44
  18. data/lib/condenser/minifiers/node_modules/uglify-js/lib/mozilla-ast.js +17 -20
  19. data/lib/condenser/minifiers/node_modules/uglify-js/lib/output.js +350 -384
  20. data/lib/condenser/minifiers/node_modules/uglify-js/lib/parse.js +187 -223
  21. data/lib/condenser/minifiers/node_modules/uglify-js/lib/propmangle.js +45 -55
  22. data/lib/condenser/minifiers/node_modules/uglify-js/lib/scope.js +142 -117
  23. data/lib/condenser/minifiers/node_modules/uglify-js/lib/sourcemap.js +50 -43
  24. data/lib/condenser/minifiers/node_modules/uglify-js/lib/transform.js +52 -81
  25. data/lib/condenser/minifiers/node_modules/uglify-js/lib/utils.js +55 -126
  26. data/lib/condenser/minifiers/node_modules/uglify-js/package.json +10 -11
  27. data/lib/condenser/minifiers/node_modules/uglify-js/tools/domprops.json +1249 -0
  28. data/lib/condenser/minifiers/node_modules/uglify-js/tools/exports.js +3 -3
  29. data/lib/condenser/minifiers/node_modules/uglify-js/tools/node.js +25 -29
  30. data/lib/condenser/minifiers/node_modules/uglify-js/tools/props.html +535 -56
  31. data/lib/condenser/minifiers/package-lock.json +25 -0
  32. data/lib/condenser/pipeline.rb +1 -1
  33. data/lib/condenser/processors/node_modules/{rollup/node_modules/.bin → .bin}/acorn +0 -0
  34. data/lib/condenser/processors/node_modules/@babel/core/lib/config/caching.js +4 -5
  35. data/lib/condenser/processors/node_modules/@babel/core/lib/config/config-chain.js +1 -1
  36. data/lib/condenser/processors/node_modules/@babel/core/lib/config/config-descriptors.js +2 -1
  37. data/lib/condenser/processors/node_modules/@babel/core/lib/config/files/configuration.js +27 -36
  38. data/lib/condenser/processors/node_modules/@babel/core/lib/config/files/index-browser.js +4 -0
  39. data/lib/condenser/processors/node_modules/@babel/core/lib/config/files/index.js +6 -0
  40. data/lib/condenser/processors/node_modules/@babel/core/lib/config/full.js +31 -8
  41. data/lib/condenser/processors/node_modules/@babel/core/lib/config/partial.js +2 -2
  42. data/lib/condenser/processors/node_modules/@babel/core/lib/config/validation/plugins.js +10 -1
  43. data/lib/condenser/processors/node_modules/@babel/core/lib/index.js +3 -1
  44. data/lib/condenser/processors/node_modules/@babel/core/lib/tools/build-external-helpers.js +3 -1
  45. data/lib/condenser/processors/node_modules/@babel/core/lib/transformation/file/file.js +8 -3
  46. data/lib/condenser/processors/node_modules/@babel/core/lib/transformation/file/generate.js +1 -1
  47. data/lib/condenser/processors/node_modules/@babel/core/lib/transformation/file/merge-map.js +14 -22
  48. data/lib/condenser/processors/node_modules/@babel/core/lib/transformation/index.js +36 -5
  49. data/lib/condenser/processors/node_modules/@babel/core/lib/transformation/normalize-file.js +75 -28
  50. data/lib/condenser/processors/node_modules/@babel/core/package.json +21 -16
  51. data/lib/condenser/processors/node_modules/@babel/generator/lib/buffer.js +1 -14
  52. data/lib/condenser/processors/node_modules/@babel/generator/lib/generators/classes.js +6 -45
  53. data/lib/condenser/processors/node_modules/@babel/generator/lib/generators/expressions.js +16 -16
  54. data/lib/condenser/processors/node_modules/@babel/generator/lib/generators/flow.js +119 -15
  55. data/lib/condenser/processors/node_modules/@babel/generator/lib/generators/methods.js +4 -10
  56. data/lib/condenser/processors/node_modules/@babel/generator/lib/generators/modules.js +8 -14
  57. data/lib/condenser/processors/node_modules/@babel/generator/lib/generators/statements.js +7 -13
  58. data/lib/condenser/processors/node_modules/@babel/generator/lib/generators/types.js +8 -22
  59. data/lib/condenser/processors/node_modules/@babel/generator/lib/generators/typescript.js +47 -4
  60. data/lib/condenser/processors/node_modules/@babel/generator/lib/node/index.js +9 -14
  61. data/lib/condenser/processors/node_modules/@babel/generator/lib/node/parentheses.js +36 -42
  62. data/lib/condenser/processors/node_modules/@babel/generator/lib/node/whitespace.js +18 -24
  63. data/lib/condenser/processors/node_modules/@babel/generator/lib/printer.js +11 -33
  64. data/lib/condenser/processors/node_modules/@babel/generator/lib/source-map.js +6 -14
  65. data/lib/condenser/processors/node_modules/@babel/generator/package.json +15 -16
  66. data/lib/condenser/processors/node_modules/@babel/helper-annotate-as-pure/LICENSE +1 -1
  67. data/lib/condenser/processors/node_modules/@babel/helper-annotate-as-pure/lib/index.js +4 -10
  68. data/lib/condenser/processors/node_modules/@babel/helper-annotate-as-pure/package.json +15 -11
  69. data/lib/condenser/processors/node_modules/@babel/helper-builder-binary-assignment-operator-visitor/LICENSE +1 -1
  70. data/lib/condenser/processors/node_modules/@babel/helper-builder-binary-assignment-operator-visitor/lib/index.js +7 -21
  71. data/lib/condenser/processors/node_modules/@babel/helper-builder-binary-assignment-operator-visitor/package.json +13 -12
  72. data/lib/condenser/processors/node_modules/@babel/helper-call-delegate/lib/index.js +13 -27
  73. data/lib/condenser/processors/node_modules/@babel/helper-call-delegate/package.json +14 -14
  74. data/lib/condenser/processors/node_modules/@babel/helper-create-class-features-plugin/lib/decorators.js +23 -47
  75. data/lib/condenser/processors/node_modules/@babel/helper-create-class-features-plugin/lib/features.js +0 -4
  76. data/lib/condenser/processors/node_modules/@babel/helper-create-class-features-plugin/lib/fields.js +139 -150
  77. data/lib/condenser/processors/node_modules/@babel/helper-create-class-features-plugin/lib/index.js +4 -20
  78. data/lib/condenser/processors/node_modules/@babel/helper-create-class-features-plugin/lib/misc.js +13 -29
  79. data/lib/condenser/processors/node_modules/@babel/helper-create-class-features-plugin/lib/typescript.js +12 -0
  80. data/lib/condenser/processors/node_modules/@babel/helper-create-class-features-plugin/package.json +18 -18
  81. data/lib/condenser/processors/node_modules/@babel/helper-create-regexp-features-plugin/LICENSE +22 -0
  82. data/lib/condenser/processors/node_modules/@babel/helper-create-regexp-features-plugin/README.md +19 -0
  83. data/lib/condenser/processors/node_modules/@babel/helper-create-regexp-features-plugin/lib/features.js +27 -0
  84. data/lib/condenser/processors/node_modules/@babel/helper-create-regexp-features-plugin/lib/index.js +116 -0
  85. data/lib/condenser/processors/node_modules/@babel/helper-create-regexp-features-plugin/lib/util.js +55 -0
  86. data/lib/condenser/processors/node_modules/@babel/helper-create-regexp-features-plugin/package.json +68 -0
  87. data/lib/condenser/processors/node_modules/@babel/helper-define-map/lib/index.js +28 -50
  88. data/lib/condenser/processors/node_modules/@babel/helper-define-map/package.json +13 -13
  89. data/lib/condenser/processors/node_modules/@babel/helper-explode-assignable-expression/LICENSE +1 -1
  90. data/lib/condenser/processors/node_modules/@babel/helper-explode-assignable-expression/lib/index.js +17 -23
  91. data/lib/condenser/processors/node_modules/@babel/helper-explode-assignable-expression/package.json +13 -12
  92. data/lib/condenser/processors/node_modules/@babel/helper-function-name/LICENSE +1 -1
  93. data/lib/condenser/processors/node_modules/@babel/helper-function-name/lib/index.js +24 -46
  94. data/lib/condenser/processors/node_modules/@babel/helper-function-name/package.json +14 -13
  95. data/lib/condenser/processors/node_modules/@babel/helper-get-function-arity/LICENSE +1 -1
  96. data/lib/condenser/processors/node_modules/@babel/helper-get-function-arity/lib/index.js +4 -10
  97. data/lib/condenser/processors/node_modules/@babel/helper-get-function-arity/package.json +15 -11
  98. data/lib/condenser/processors/node_modules/@babel/helper-hoist-variables/lib/index.js +5 -11
  99. data/lib/condenser/processors/node_modules/@babel/helper-hoist-variables/package.json +12 -12
  100. data/lib/condenser/processors/node_modules/@babel/helper-member-expression-to-functions/lib/index.js +9 -15
  101. data/lib/condenser/processors/node_modules/@babel/helper-member-expression-to-functions/package.json +12 -12
  102. data/lib/condenser/processors/node_modules/@babel/helper-module-imports/LICENSE +1 -1
  103. data/lib/condenser/processors/node_modules/@babel/helper-module-imports/lib/import-builder.js +31 -45
  104. data/lib/condenser/processors/node_modules/@babel/helper-module-imports/lib/import-injector.js +10 -24
  105. data/lib/condenser/processors/node_modules/@babel/helper-module-imports/package.json +16 -12
  106. data/lib/condenser/processors/node_modules/@babel/helper-module-transforms/lib/index.js +32 -70
  107. data/lib/condenser/processors/node_modules/@babel/helper-module-transforms/lib/normalize-and-load-metadata.js +4 -20
  108. data/lib/condenser/processors/node_modules/@babel/helper-module-transforms/lib/rewrite-live-references.js +33 -69
  109. data/lib/condenser/processors/node_modules/@babel/helper-module-transforms/package.json +16 -16
  110. data/lib/condenser/processors/node_modules/@babel/helper-optimise-call-expression/LICENSE +1 -1
  111. data/lib/condenser/processors/node_modules/@babel/helper-optimise-call-expression/lib/index.js +6 -12
  112. data/lib/condenser/processors/node_modules/@babel/helper-optimise-call-expression/package.json +15 -11
  113. data/lib/condenser/processors/node_modules/@babel/helper-plugin-utils/package.json +1 -0
  114. data/lib/condenser/processors/node_modules/@babel/helper-regex/package.json +3 -5
  115. data/lib/condenser/processors/node_modules/@babel/helper-remap-async-to-generator/LICENSE +1 -1
  116. data/lib/condenser/processors/node_modules/@babel/helper-remap-async-to-generator/lib/index.js +10 -32
  117. data/lib/condenser/processors/node_modules/@babel/helper-remap-async-to-generator/package.json +16 -15
  118. data/lib/condenser/processors/node_modules/@babel/helper-replace-supers/lib/index.js +26 -56
  119. data/lib/condenser/processors/node_modules/@babel/helper-replace-supers/package.json +15 -15
  120. data/lib/condenser/processors/node_modules/@babel/helper-simple-access/LICENSE +1 -1
  121. data/lib/condenser/processors/node_modules/@babel/helper-simple-access/lib/index.js +8 -14
  122. data/lib/condenser/processors/node_modules/@babel/helper-simple-access/package.json +13 -12
  123. data/lib/condenser/processors/node_modules/@babel/helper-split-export-declaration/lib/index.js +8 -14
  124. data/lib/condenser/processors/node_modules/@babel/helper-split-export-declaration/package.json +12 -12
  125. data/lib/condenser/processors/node_modules/@babel/helper-wrap-function/LICENSE +1 -1
  126. data/lib/condenser/processors/node_modules/@babel/helper-wrap-function/lib/index.js +13 -35
  127. data/lib/condenser/processors/node_modules/@babel/helper-wrap-function/package.json +15 -14
  128. data/lib/condenser/processors/node_modules/@babel/helpers/lib/helpers.js +99 -67
  129. data/lib/condenser/processors/node_modules/@babel/helpers/lib/index.js +14 -28
  130. data/lib/condenser/processors/node_modules/@babel/helpers/package.json +15 -15
  131. data/lib/condenser/processors/node_modules/@babel/parser/CHANGELOG.md +13 -13
  132. data/lib/condenser/processors/node_modules/@babel/parser/lib/index.js +1593 -716
  133. data/lib/condenser/processors/node_modules/@babel/parser/lib/index.js.map +1 -0
  134. data/lib/condenser/processors/node_modules/@babel/parser/lib/options.js +35 -0
  135. data/lib/condenser/processors/node_modules/@babel/parser/lib/parser/base.js +24 -0
  136. data/lib/condenser/processors/node_modules/@babel/parser/lib/parser/comments.js +198 -0
  137. data/lib/condenser/processors/node_modules/@babel/parser/lib/parser/expression.js +1703 -0
  138. data/lib/condenser/processors/node_modules/@babel/parser/lib/parser/index.js +59 -0
  139. data/lib/condenser/processors/node_modules/@babel/parser/lib/parser/location.js +49 -0
  140. data/lib/condenser/processors/node_modules/@babel/parser/lib/parser/lval.js +364 -0
  141. data/lib/condenser/processors/node_modules/@babel/parser/lib/parser/node.js +89 -0
  142. data/lib/condenser/processors/node_modules/@babel/parser/lib/parser/statement.js +1529 -0
  143. data/lib/condenser/processors/node_modules/@babel/parser/lib/parser/util.js +228 -0
  144. data/lib/condenser/processors/node_modules/@babel/parser/lib/plugin-utils.js +91 -0
  145. data/lib/condenser/processors/node_modules/@babel/parser/lib/plugins/estree.js +283 -0
  146. data/lib/condenser/processors/node_modules/@babel/parser/lib/plugins/flow.js +2690 -0
  147. data/lib/condenser/processors/node_modules/@babel/parser/lib/plugins/jsx/index.js +516 -0
  148. data/lib/condenser/processors/node_modules/@babel/parser/lib/plugins/jsx/xhtml.js +263 -0
  149. data/lib/condenser/processors/node_modules/@babel/parser/lib/plugins/placeholders.js +204 -0
  150. data/lib/condenser/processors/node_modules/@babel/parser/lib/plugins/typescript/index.js +2076 -0
  151. data/lib/condenser/processors/node_modules/@babel/parser/lib/plugins/typescript/scope.js +94 -0
  152. data/lib/condenser/processors/node_modules/@babel/parser/lib/plugins/v8intrinsic.js +43 -0
  153. data/lib/condenser/processors/node_modules/@babel/parser/lib/tokenizer/context.js +102 -0
  154. data/lib/condenser/processors/node_modules/@babel/parser/lib/tokenizer/index.js +1225 -0
  155. data/lib/condenser/processors/node_modules/@babel/parser/lib/tokenizer/state.js +101 -0
  156. data/lib/condenser/processors/node_modules/@babel/parser/lib/tokenizer/types.js +267 -0
  157. data/lib/condenser/processors/node_modules/@babel/parser/lib/types.js +0 -0
  158. data/lib/condenser/processors/node_modules/@babel/parser/lib/util/identifier.js +99 -0
  159. data/lib/condenser/processors/node_modules/@babel/parser/lib/util/location.js +43 -0
  160. data/lib/condenser/processors/node_modules/@babel/parser/lib/util/scope.js +172 -0
  161. data/lib/condenser/processors/node_modules/@babel/parser/lib/util/scopeflags.js +82 -0
  162. data/lib/condenser/processors/node_modules/@babel/parser/lib/util/whitespace.js +58 -0
  163. data/lib/condenser/processors/node_modules/@babel/parser/package.json +13 -13
  164. data/lib/condenser/processors/node_modules/@babel/parser/typings/babel-parser.d.ts +29 -18
  165. data/lib/condenser/processors/node_modules/@babel/plugin-proposal-async-generator-functions/LICENSE +1 -1
  166. data/lib/condenser/processors/node_modules/@babel/plugin-proposal-async-generator-functions/lib/for-await.js +8 -16
  167. data/lib/condenser/processors/node_modules/@babel/plugin-proposal-async-generator-functions/lib/index.js +10 -42
  168. data/lib/condenser/processors/node_modules/@babel/plugin-proposal-async-generator-functions/package.json +15 -14
  169. data/lib/condenser/processors/node_modules/@babel/plugin-proposal-class-properties/lib/index.js +5 -21
  170. data/lib/condenser/processors/node_modules/@babel/plugin-proposal-class-properties/package.json +9 -9
  171. data/lib/condenser/processors/node_modules/@babel/plugin-proposal-dynamic-import/lib/index.js +4 -20
  172. data/lib/condenser/processors/node_modules/@babel/plugin-proposal-dynamic-import/package.json +14 -14
  173. data/lib/condenser/processors/node_modules/@babel/plugin-proposal-json-strings/LICENSE +1 -1
  174. data/lib/condenser/processors/node_modules/@babel/plugin-proposal-json-strings/lib/index.js +4 -20
  175. data/lib/condenser/processors/node_modules/@babel/plugin-proposal-json-strings/package.json +14 -13
  176. data/lib/condenser/processors/node_modules/@babel/plugin-proposal-object-rest-spread/lib/index.js +109 -100
  177. data/lib/condenser/processors/node_modules/@babel/plugin-proposal-object-rest-spread/package.json +14 -14
  178. data/lib/condenser/processors/node_modules/@babel/plugin-proposal-optional-catch-binding/LICENSE +1 -1
  179. data/lib/condenser/processors/node_modules/@babel/plugin-proposal-optional-catch-binding/lib/index.js +4 -20
  180. data/lib/condenser/processors/node_modules/@babel/plugin-proposal-optional-catch-binding/package.json +14 -13
  181. data/lib/condenser/processors/node_modules/@babel/plugin-proposal-unicode-property-regex/lib/index.js +8 -53
  182. data/lib/condenser/processors/node_modules/@babel/plugin-proposal-unicode-property-regex/package.json +15 -16
  183. data/lib/condenser/processors/node_modules/@babel/plugin-syntax-async-generators/LICENSE +1 -1
  184. data/lib/condenser/processors/node_modules/@babel/plugin-syntax-async-generators/lib/index.js +2 -10
  185. data/lib/condenser/processors/node_modules/@babel/plugin-syntax-async-generators/package.json +12 -11
  186. data/lib/condenser/processors/node_modules/@babel/plugin-syntax-dynamic-import/LICENSE +1 -1
  187. data/lib/condenser/processors/node_modules/@babel/plugin-syntax-dynamic-import/lib/index.js +2 -10
  188. data/lib/condenser/processors/node_modules/@babel/plugin-syntax-dynamic-import/package.json +12 -11
  189. data/lib/condenser/processors/node_modules/@babel/plugin-syntax-json-strings/LICENSE +1 -1
  190. data/lib/condenser/processors/node_modules/@babel/plugin-syntax-json-strings/lib/index.js +2 -10
  191. data/lib/condenser/processors/node_modules/@babel/plugin-syntax-json-strings/package.json +12 -11
  192. data/lib/condenser/processors/node_modules/@babel/plugin-syntax-object-rest-spread/LICENSE +1 -1
  193. data/lib/condenser/processors/node_modules/@babel/plugin-syntax-object-rest-spread/lib/index.js +2 -10
  194. data/lib/condenser/processors/node_modules/@babel/plugin-syntax-object-rest-spread/package.json +12 -11
  195. data/lib/condenser/processors/node_modules/@babel/plugin-syntax-optional-catch-binding/LICENSE +1 -1
  196. data/lib/condenser/processors/node_modules/@babel/plugin-syntax-optional-catch-binding/lib/index.js +2 -10
  197. data/lib/condenser/processors/node_modules/@babel/plugin-syntax-optional-catch-binding/package.json +12 -11
  198. data/lib/condenser/processors/node_modules/@babel/plugin-syntax-top-level-await/LICENSE +22 -0
  199. data/lib/condenser/processors/node_modules/@babel/plugin-syntax-top-level-await/README.md +19 -0
  200. data/lib/condenser/processors/node_modules/@babel/plugin-syntax-top-level-await/lib/index.js +22 -0
  201. data/lib/condenser/processors/node_modules/@babel/plugin-syntax-top-level-await/package.json +53 -0
  202. data/lib/condenser/processors/node_modules/@babel/plugin-transform-arrow-functions/LICENSE +1 -1
  203. data/lib/condenser/processors/node_modules/@babel/plugin-transform-arrow-functions/lib/index.js +2 -10
  204. data/lib/condenser/processors/node_modules/@babel/plugin-transform-arrow-functions/package.json +14 -13
  205. data/lib/condenser/processors/node_modules/@babel/plugin-transform-async-to-generator/lib/index.js +9 -41
  206. data/lib/condenser/processors/node_modules/@babel/plugin-transform-async-to-generator/package.json +15 -15
  207. data/lib/condenser/processors/node_modules/@babel/plugin-transform-block-scoped-functions/LICENSE +1 -1
  208. data/lib/condenser/processors/node_modules/@babel/plugin-transform-block-scoped-functions/lib/index.js +6 -22
  209. data/lib/condenser/processors/node_modules/@babel/plugin-transform-block-scoped-functions/package.json +13 -12
  210. data/lib/condenser/processors/node_modules/@babel/plugin-transform-block-scoping/lib/index.js +78 -109
  211. data/lib/condenser/processors/node_modules/@babel/plugin-transform-block-scoping/lib/tdz.js +10 -18
  212. data/lib/condenser/processors/node_modules/@babel/plugin-transform-block-scoping/package.json +13 -13
  213. data/lib/condenser/processors/node_modules/@babel/plugin-transform-classes/lib/index.js +12 -60
  214. data/lib/condenser/processors/node_modules/@babel/plugin-transform-classes/lib/transformClass.js +69 -107
  215. data/lib/condenser/processors/node_modules/@babel/plugin-transform-classes/package.json +19 -19
  216. data/lib/condenser/processors/node_modules/@babel/plugin-transform-computed-properties/LICENSE +1 -1
  217. data/lib/condenser/processors/node_modules/@babel/plugin-transform-computed-properties/lib/index.js +23 -39
  218. data/lib/condenser/processors/node_modules/@babel/plugin-transform-computed-properties/package.json +13 -12
  219. data/lib/condenser/processors/node_modules/@babel/plugin-transform-destructuring/lib/index.js +75 -91
  220. data/lib/condenser/processors/node_modules/@babel/plugin-transform-destructuring/package.json +13 -13
  221. data/lib/condenser/processors/node_modules/@babel/plugin-transform-dotall-regex/lib/index.js +6 -51
  222. data/lib/condenser/processors/node_modules/@babel/plugin-transform-dotall-regex/package.json +15 -19
  223. data/lib/condenser/processors/node_modules/@babel/plugin-transform-duplicate-keys/lib/index.js +6 -22
  224. data/lib/condenser/processors/node_modules/@babel/plugin-transform-duplicate-keys/package.json +13 -13
  225. data/lib/condenser/processors/node_modules/@babel/plugin-transform-exponentiation-operator/LICENSE +1 -1
  226. data/lib/condenser/processors/node_modules/@babel/plugin-transform-exponentiation-operator/lib/index.js +6 -30
  227. data/lib/condenser/processors/node_modules/@babel/plugin-transform-exponentiation-operator/package.json +14 -13
  228. data/lib/condenser/processors/node_modules/@babel/plugin-transform-for-of/lib/index.js +36 -52
  229. data/lib/condenser/processors/node_modules/@babel/plugin-transform-for-of/package.json +13 -13
  230. data/lib/condenser/processors/node_modules/@babel/plugin-transform-function-name/lib/index.js +5 -21
  231. data/lib/condenser/processors/node_modules/@babel/plugin-transform-function-name/package.json +14 -14
  232. data/lib/condenser/processors/node_modules/@babel/plugin-transform-literals/LICENSE +1 -1
  233. data/lib/condenser/processors/node_modules/@babel/plugin-transform-literals/README.md +1 -1
  234. data/lib/condenser/processors/node_modules/@babel/plugin-transform-literals/lib/index.js +2 -10
  235. data/lib/condenser/processors/node_modules/@babel/plugin-transform-literals/package.json +13 -12
  236. data/lib/condenser/processors/node_modules/@babel/plugin-transform-member-expression-literals/LICENSE +1 -1
  237. data/lib/condenser/processors/node_modules/@babel/plugin-transform-member-expression-literals/lib/index.js +5 -21
  238. data/lib/condenser/processors/node_modules/@babel/plugin-transform-member-expression-literals/package.json +13 -12
  239. data/lib/condenser/processors/node_modules/@babel/plugin-transform-modules-amd/lib/index.js +26 -58
  240. data/lib/condenser/processors/node_modules/@babel/plugin-transform-modules-amd/package.json +14 -14
  241. data/lib/condenser/processors/node_modules/@babel/plugin-transform-modules-commonjs/lib/index.js +22 -62
  242. data/lib/condenser/processors/node_modules/@babel/plugin-transform-modules-commonjs/package.json +16 -16
  243. data/lib/condenser/processors/node_modules/@babel/plugin-transform-modules-systemjs/lib/index.js +56 -86
  244. data/lib/condenser/processors/node_modules/@babel/plugin-transform-modules-systemjs/package.json +15 -15
  245. data/lib/condenser/processors/node_modules/@babel/plugin-transform-modules-umd/LICENSE +1 -1
  246. data/lib/condenser/processors/node_modules/@babel/plugin-transform-modules-umd/lib/index.js +39 -67
  247. data/lib/condenser/processors/node_modules/@babel/plugin-transform-modules-umd/package.json +14 -13
  248. data/lib/condenser/processors/node_modules/@babel/plugin-transform-named-capturing-groups-regex/lib/index.js +6 -47
  249. data/lib/condenser/processors/node_modules/@babel/plugin-transform-named-capturing-groups-regex/package.json +21 -15
  250. data/lib/condenser/processors/node_modules/@babel/plugin-transform-new-target/lib/index.js +5 -21
  251. data/lib/condenser/processors/node_modules/@babel/plugin-transform-new-target/package.json +15 -15
  252. data/lib/condenser/processors/node_modules/@babel/plugin-transform-object-super/lib/index.js +7 -31
  253. data/lib/condenser/processors/node_modules/@babel/plugin-transform-object-super/package.json +14 -14
  254. data/lib/condenser/processors/node_modules/@babel/plugin-transform-parameters/lib/index.js +2 -10
  255. data/lib/condenser/processors/node_modules/@babel/plugin-transform-parameters/lib/params.js +15 -31
  256. data/lib/condenser/processors/node_modules/@babel/plugin-transform-parameters/lib/rest.js +25 -35
  257. data/lib/condenser/processors/node_modules/@babel/plugin-transform-parameters/package.json +15 -15
  258. data/lib/condenser/processors/node_modules/@babel/plugin-transform-property-literals/LICENSE +1 -1
  259. data/lib/condenser/processors/node_modules/@babel/plugin-transform-property-literals/lib/index.js +5 -21
  260. data/lib/condenser/processors/node_modules/@babel/plugin-transform-property-literals/package.json +13 -12
  261. data/lib/condenser/processors/node_modules/@babel/plugin-transform-regenerator/lib/index.js +2 -10
  262. data/lib/condenser/processors/node_modules/@babel/plugin-transform-regenerator/package.json +13 -13
  263. data/lib/condenser/processors/node_modules/@babel/plugin-transform-reserved-words/LICENSE +1 -1
  264. data/lib/condenser/processors/node_modules/@babel/plugin-transform-reserved-words/lib/index.js +4 -20
  265. data/lib/condenser/processors/node_modules/@babel/plugin-transform-reserved-words/package.json +13 -12
  266. data/lib/condenser/processors/node_modules/@babel/plugin-transform-runtime/lib/helpers.js +5 -21
  267. data/lib/condenser/processors/node_modules/@babel/plugin-transform-runtime/lib/index.js +46 -76
  268. data/lib/condenser/processors/node_modules/@babel/plugin-transform-runtime/package.json +15 -15
  269. data/lib/condenser/processors/node_modules/@babel/plugin-transform-shorthand-properties/LICENSE +1 -1
  270. data/lib/condenser/processors/node_modules/@babel/plugin-transform-shorthand-properties/lib/index.js +5 -21
  271. data/lib/condenser/processors/node_modules/@babel/plugin-transform-shorthand-properties/package.json +13 -12
  272. data/lib/condenser/processors/node_modules/@babel/plugin-transform-spread/LICENSE +1 -1
  273. data/lib/condenser/processors/node_modules/@babel/plugin-transform-spread/lib/index.js +20 -36
  274. data/lib/condenser/processors/node_modules/@babel/plugin-transform-spread/package.json +13 -12
  275. data/lib/condenser/processors/node_modules/@babel/plugin-transform-sticky-regex/LICENSE +1 -1
  276. data/lib/condenser/processors/node_modules/@babel/plugin-transform-sticky-regex/lib/index.js +8 -30
  277. data/lib/condenser/processors/node_modules/@babel/plugin-transform-sticky-regex/package.json +13 -12
  278. data/lib/condenser/processors/node_modules/@babel/plugin-transform-template-literals/lib/index.js +19 -35
  279. data/lib/condenser/processors/node_modules/@babel/plugin-transform-template-literals/package.json +14 -14
  280. data/lib/condenser/processors/node_modules/@babel/plugin-transform-typeof-symbol/LICENSE +1 -1
  281. data/lib/condenser/processors/node_modules/@babel/plugin-transform-typeof-symbol/lib/index.js +7 -23
  282. data/lib/condenser/processors/node_modules/@babel/plugin-transform-typeof-symbol/package.json +13 -12
  283. data/lib/condenser/processors/node_modules/@babel/plugin-transform-unicode-regex/lib/index.js +6 -45
  284. data/lib/condenser/processors/node_modules/@babel/plugin-transform-unicode-regex/package.json +15 -16
  285. data/lib/condenser/processors/node_modules/@babel/preset-env/CONTRIBUTING.md +2 -2
  286. data/lib/condenser/processors/node_modules/@babel/preset-env/data/corejs2-built-in-features.js +25 -1
  287. data/lib/condenser/processors/node_modules/@babel/preset-env/data/corejs2-built-ins.json +3 -0
  288. data/lib/condenser/processors/node_modules/@babel/preset-env/data/overlapping-plugins.js +16 -0
  289. data/lib/condenser/processors/node_modules/@babel/preset-env/data/plugins.json +6 -0
  290. data/lib/condenser/processors/node_modules/@babel/preset-env/lib/available-plugins.js +132 -42
  291. data/lib/condenser/processors/node_modules/@babel/preset-env/lib/debug.js +10 -10
  292. data/lib/condenser/processors/node_modules/@babel/preset-env/lib/filter-items.js +11 -11
  293. data/lib/condenser/processors/node_modules/@babel/preset-env/lib/index.js +128 -81
  294. data/lib/condenser/processors/node_modules/@babel/preset-env/lib/normalize-options.js +15 -39
  295. data/lib/condenser/processors/node_modules/@babel/preset-env/lib/polyfills/corejs2/usage-plugin.js +7 -6
  296. data/lib/condenser/processors/node_modules/@babel/preset-env/lib/polyfills/corejs3/built-in-definitions.js +2 -2
  297. data/lib/condenser/processors/node_modules/@babel/preset-env/lib/polyfills/corejs3/entry-plugin.js +48 -54
  298. data/lib/condenser/processors/node_modules/@babel/preset-env/lib/polyfills/corejs3/usage-plugin.js +37 -42
  299. data/lib/condenser/processors/node_modules/@babel/preset-env/lib/polyfills/regenerator/entry-plugin.js +7 -1
  300. data/lib/condenser/processors/node_modules/@babel/preset-env/lib/polyfills/regenerator/usage-plugin.js +7 -1
  301. data/lib/condenser/processors/node_modules/@babel/preset-env/lib/targets-parser.js +10 -35
  302. data/lib/condenser/processors/node_modules/@babel/preset-env/lib/utils.js +26 -56
  303. data/lib/condenser/processors/node_modules/@babel/preset-env/package.json +57 -57
  304. data/lib/condenser/processors/node_modules/@babel/runtime-corejs3/helpers/AsyncGenerator.js +1 -1
  305. data/lib/condenser/processors/node_modules/@babel/runtime-corejs3/helpers/asyncGeneratorDelegate.js +5 -0
  306. data/lib/condenser/processors/node_modules/@babel/runtime-corejs3/helpers/classStaticPrivateFieldSpecGet.js +4 -0
  307. data/lib/condenser/processors/node_modules/@babel/runtime-corejs3/helpers/classStaticPrivateFieldSpecSet.js +8 -3
  308. data/lib/condenser/processors/node_modules/@babel/runtime-corejs3/helpers/esm/AsyncGenerator.js +1 -1
  309. data/lib/condenser/processors/node_modules/@babel/runtime-corejs3/helpers/esm/asyncGeneratorDelegate.js +5 -0
  310. data/lib/condenser/processors/node_modules/@babel/runtime-corejs3/helpers/esm/classStaticPrivateFieldSpecGet.js +4 -0
  311. data/lib/condenser/processors/node_modules/@babel/runtime-corejs3/helpers/esm/classStaticPrivateFieldSpecSet.js +8 -3
  312. data/lib/condenser/processors/node_modules/@babel/runtime-corejs3/helpers/esm/initializerWarningHelper.js +1 -1
  313. data/lib/condenser/processors/node_modules/@babel/runtime-corejs3/helpers/esm/interopRequireWildcard.js +46 -16
  314. data/lib/condenser/processors/node_modules/@babel/runtime-corejs3/helpers/esm/iterableToArrayLimit.js +5 -0
  315. data/lib/condenser/processors/node_modules/@babel/runtime-corejs3/helpers/esm/iterableToArrayLimitLoose.js +5 -0
  316. data/lib/condenser/processors/node_modules/@babel/runtime-corejs3/helpers/esm/jsx.js +12 -11
  317. data/lib/condenser/processors/node_modules/@babel/runtime-corejs3/helpers/esm/objectSpread.js +1 -1
  318. data/lib/condenser/processors/node_modules/@babel/runtime-corejs3/helpers/esm/objectSpread2.js +2 -2
  319. data/lib/condenser/processors/node_modules/@babel/runtime-corejs3/helpers/esm/package.json +3 -0
  320. data/lib/condenser/processors/node_modules/@babel/runtime-corejs3/helpers/esm/tdz.js +3 -0
  321. data/lib/condenser/processors/node_modules/@babel/runtime-corejs3/helpers/esm/temporalRef.js +2 -5
  322. data/lib/condenser/processors/node_modules/@babel/runtime-corejs3/helpers/esm/temporalUndefined.js +1 -1
  323. data/lib/condenser/processors/node_modules/@babel/runtime-corejs3/helpers/esm/typeof.js +3 -6
  324. data/lib/condenser/processors/node_modules/@babel/runtime-corejs3/helpers/esm/wrapRegExp.js +4 -4
  325. data/lib/condenser/processors/node_modules/@babel/runtime-corejs3/helpers/initializerWarningHelper.js +1 -1
  326. data/lib/condenser/processors/node_modules/@babel/runtime-corejs3/helpers/interopRequireWildcard.js +47 -16
  327. data/lib/condenser/processors/node_modules/@babel/runtime-corejs3/helpers/iterableToArrayLimit.js +6 -0
  328. data/lib/condenser/processors/node_modules/@babel/runtime-corejs3/helpers/iterableToArrayLimitLoose.js +6 -0
  329. data/lib/condenser/processors/node_modules/@babel/runtime-corejs3/helpers/jsx.js +13 -11
  330. data/lib/condenser/processors/node_modules/@babel/runtime-corejs3/helpers/objectSpread.js +1 -1
  331. data/lib/condenser/processors/node_modules/@babel/runtime-corejs3/helpers/objectSpread2.js +2 -2
  332. data/lib/condenser/processors/node_modules/@babel/runtime-corejs3/helpers/tdz.js +5 -0
  333. data/lib/condenser/processors/node_modules/@babel/runtime-corejs3/helpers/temporalRef.js +3 -5
  334. data/lib/condenser/processors/node_modules/@babel/runtime-corejs3/helpers/temporalUndefined.js +3 -1
  335. data/lib/condenser/processors/node_modules/@babel/runtime-corejs3/helpers/typeof.js +3 -5
  336. data/lib/condenser/processors/node_modules/@babel/runtime-corejs3/helpers/wrapRegExp.js +4 -4
  337. data/lib/condenser/processors/node_modules/@babel/runtime-corejs3/package.json +6 -6
  338. data/lib/condenser/processors/node_modules/@babel/runtime/helpers/AsyncGenerator.js +1 -1
  339. data/lib/condenser/processors/node_modules/@babel/runtime/helpers/asyncGeneratorDelegate.js +5 -0
  340. data/lib/condenser/processors/node_modules/@babel/runtime/helpers/classStaticPrivateFieldSpecGet.js +4 -0
  341. data/lib/condenser/processors/node_modules/@babel/runtime/helpers/classStaticPrivateFieldSpecSet.js +8 -3
  342. data/lib/condenser/processors/node_modules/@babel/runtime/helpers/esm/AsyncGenerator.js +1 -1
  343. data/lib/condenser/processors/node_modules/@babel/runtime/helpers/esm/asyncGeneratorDelegate.js +5 -0
  344. data/lib/condenser/processors/node_modules/@babel/runtime/helpers/esm/classStaticPrivateFieldSpecGet.js +4 -0
  345. data/lib/condenser/processors/node_modules/@babel/runtime/helpers/esm/classStaticPrivateFieldSpecSet.js +8 -3
  346. data/lib/condenser/processors/node_modules/@babel/runtime/helpers/esm/initializerWarningHelper.js +1 -1
  347. data/lib/condenser/processors/node_modules/@babel/runtime/helpers/esm/interopRequireWildcard.js +45 -16
  348. data/lib/condenser/processors/node_modules/@babel/runtime/helpers/esm/iterableToArrayLimit.js +4 -0
  349. data/lib/condenser/processors/node_modules/@babel/runtime/helpers/esm/iterableToArrayLimitLoose.js +4 -0
  350. data/lib/condenser/processors/node_modules/@babel/runtime/helpers/esm/jsx.js +10 -10
  351. data/lib/condenser/processors/node_modules/@babel/runtime/helpers/esm/objectSpread.js +1 -1
  352. data/lib/condenser/processors/node_modules/@babel/runtime/helpers/esm/objectSpread2.js +2 -2
  353. data/lib/condenser/processors/node_modules/@babel/runtime/helpers/esm/package.json +3 -0
  354. data/lib/condenser/processors/node_modules/@babel/runtime/helpers/esm/tdz.js +3 -0
  355. data/lib/condenser/processors/node_modules/@babel/runtime/helpers/esm/temporalRef.js +2 -5
  356. data/lib/condenser/processors/node_modules/@babel/runtime/helpers/esm/temporalUndefined.js +1 -1
  357. data/lib/condenser/processors/node_modules/@babel/runtime/helpers/esm/typeof.js +3 -5
  358. data/lib/condenser/processors/node_modules/@babel/runtime/helpers/esm/wrapRegExp.js +4 -4
  359. data/lib/condenser/processors/node_modules/@babel/runtime/helpers/initializerWarningHelper.js +1 -1
  360. data/lib/condenser/processors/node_modules/@babel/runtime/helpers/interopRequireWildcard.js +45 -16
  361. data/lib/condenser/processors/node_modules/@babel/runtime/helpers/iterableToArrayLimit.js +4 -0
  362. data/lib/condenser/processors/node_modules/@babel/runtime/helpers/iterableToArrayLimitLoose.js +4 -0
  363. data/lib/condenser/processors/node_modules/@babel/runtime/helpers/jsx.js +10 -10
  364. data/lib/condenser/processors/node_modules/@babel/runtime/helpers/objectSpread.js +1 -1
  365. data/lib/condenser/processors/node_modules/@babel/runtime/helpers/objectSpread2.js +2 -2
  366. data/lib/condenser/processors/node_modules/@babel/runtime/helpers/tdz.js +5 -0
  367. data/lib/condenser/processors/node_modules/@babel/runtime/helpers/temporalRef.js +3 -5
  368. data/lib/condenser/processors/node_modules/@babel/runtime/helpers/temporalUndefined.js +3 -1
  369. data/lib/condenser/processors/node_modules/@babel/runtime/helpers/typeof.js +3 -5
  370. data/lib/condenser/processors/node_modules/@babel/runtime/helpers/wrapRegExp.js +4 -4
  371. data/lib/condenser/processors/node_modules/@babel/runtime/package.json +13 -8
  372. data/lib/condenser/processors/node_modules/@babel/template/lib/index.js +3 -1
  373. data/lib/condenser/processors/node_modules/@babel/template/lib/options.js +1 -1
  374. data/lib/condenser/processors/node_modules/@babel/template/lib/parse.js +16 -38
  375. data/lib/condenser/processors/node_modules/@babel/template/lib/populate.js +20 -26
  376. data/lib/condenser/processors/node_modules/@babel/template/package.json +13 -13
  377. data/lib/condenser/processors/node_modules/@babel/traverse/lib/context.js +4 -10
  378. data/lib/condenser/processors/node_modules/@babel/traverse/lib/index.js +14 -24
  379. data/lib/condenser/processors/node_modules/@babel/traverse/lib/path/ancestry.js +5 -11
  380. data/lib/condenser/processors/node_modules/@babel/traverse/lib/path/comments.js +5 -11
  381. data/lib/condenser/processors/node_modules/@babel/traverse/lib/path/context.js +14 -10
  382. data/lib/condenser/processors/node_modules/@babel/traverse/lib/path/conversion.js +72 -107
  383. data/lib/condenser/processors/node_modules/@babel/traverse/lib/path/family.js +59 -13
  384. data/lib/condenser/processors/node_modules/@babel/traverse/lib/path/index.js +79 -42
  385. data/lib/condenser/processors/node_modules/@babel/traverse/lib/path/inference/index.js +20 -26
  386. data/lib/condenser/processors/node_modules/@babel/traverse/lib/path/inference/inferer-reference.js +11 -17
  387. data/lib/condenser/processors/node_modules/@babel/traverse/lib/path/inference/inferers.js +40 -46
  388. data/lib/condenser/processors/node_modules/@babel/traverse/lib/path/introspection.js +122 -70
  389. data/lib/condenser/processors/node_modules/@babel/traverse/lib/path/lib/hoister.js +19 -14
  390. data/lib/condenser/processors/node_modules/@babel/traverse/lib/path/lib/virtual-types.js +22 -28
  391. data/lib/condenser/processors/node_modules/@babel/traverse/lib/path/modification.js +9 -15
  392. data/lib/condenser/processors/node_modules/@babel/traverse/lib/path/removal.js +3 -2
  393. data/lib/condenser/processors/node_modules/@babel/traverse/lib/path/replacement.js +27 -49
  394. data/lib/condenser/processors/node_modules/@babel/traverse/lib/scope/index.js +62 -104
  395. data/lib/condenser/processors/node_modules/@babel/traverse/lib/scope/lib/renamer.js +10 -24
  396. data/lib/condenser/processors/node_modules/@babel/traverse/lib/visitors.js +9 -23
  397. data/lib/condenser/processors/node_modules/@babel/traverse/package.json +17 -17
  398. data/lib/condenser/processors/node_modules/@babel/types/lib/asserts/generated/index.js +85 -20
  399. data/lib/condenser/processors/node_modules/@babel/types/lib/builders/builder.js +2 -10
  400. data/lib/condenser/processors/node_modules/@babel/types/lib/builders/generated/index.js +74 -19
  401. data/lib/condenser/processors/node_modules/@babel/types/lib/constants/generated/index.js +5 -1
  402. data/lib/condenser/processors/node_modules/@babel/types/lib/converters/valueToNode.js +4 -20
  403. data/lib/condenser/processors/node_modules/@babel/types/lib/definitions/core.js +7 -5
  404. data/lib/condenser/processors/node_modules/@babel/types/lib/definitions/es2015.js +13 -7
  405. data/lib/condenser/processors/node_modules/@babel/types/lib/definitions/experimental.js +14 -4
  406. data/lib/condenser/processors/node_modules/@babel/types/lib/definitions/flow.js +73 -1
  407. data/lib/condenser/processors/node_modules/@babel/types/lib/definitions/index.js +9 -17
  408. data/lib/condenser/processors/node_modules/@babel/types/lib/definitions/jsx.js +5 -3
  409. data/lib/condenser/processors/node_modules/@babel/types/lib/definitions/misc.js +11 -1
  410. data/lib/condenser/processors/node_modules/@babel/types/lib/definitions/typescript.js +11 -6
  411. data/lib/condenser/processors/node_modules/@babel/types/lib/index.d.ts +502 -44
  412. data/lib/condenser/processors/node_modules/@babel/types/lib/index.js.flow +182 -40
  413. data/lib/condenser/processors/node_modules/@babel/types/lib/utils/inherit.js +2 -10
  414. data/lib/condenser/processors/node_modules/@babel/types/lib/validators/generated/index.js +232 -24
  415. data/lib/condenser/processors/node_modules/@babel/types/lib/validators/isValidIdentifier.js +3 -11
  416. data/lib/condenser/processors/node_modules/@babel/types/package.json +16 -13
  417. data/lib/condenser/processors/node_modules/@babel/types/scripts/generators/flow.js +98 -5
  418. data/lib/condenser/processors/node_modules/@babel/types/scripts/generators/generateAsserts.js +2 -1
  419. data/lib/condenser/processors/node_modules/@babel/types/scripts/generators/typescript.js +175 -17
  420. data/lib/condenser/processors/node_modules/@babel/types/scripts/utils/formatBuilderName.js +2 -1
  421. data/lib/condenser/processors/node_modules/@types/estree/README.md +4 -4
  422. data/lib/condenser/processors/node_modules/@types/estree/flow.d.ts +174 -0
  423. data/lib/condenser/processors/node_modules/@types/estree/index.d.ts +554 -548
  424. data/lib/condenser/processors/node_modules/@types/estree/package.json +16 -15
  425. data/lib/condenser/processors/node_modules/@types/node/README.md +5 -5
  426. data/lib/condenser/processors/node_modules/@types/node/assert.d.ts +4 -6
  427. data/lib/condenser/processors/node_modules/@types/node/async_hooks.d.ts +1 -1
  428. data/lib/condenser/processors/node_modules/@types/node/child_process.d.ts +176 -51
  429. data/lib/condenser/processors/node_modules/@types/node/cluster.d.ts +9 -3
  430. data/lib/condenser/processors/node_modules/@types/node/constants.d.ts +6 -276
  431. data/lib/condenser/processors/node_modules/@types/node/crypto.d.ts +59 -46
  432. data/lib/condenser/processors/node_modules/@types/node/dgram.d.ts +54 -15
  433. data/lib/condenser/processors/node_modules/@types/node/domain.d.ts +5 -5
  434. data/lib/condenser/processors/node_modules/@types/node/events.d.ts +12 -2
  435. data/lib/condenser/processors/node_modules/@types/node/fs.d.ts +208 -47
  436. data/lib/condenser/processors/node_modules/@types/node/globals.d.ts +56 -131
  437. data/lib/condenser/processors/node_modules/@types/node/http.d.ts +18 -9
  438. data/lib/condenser/processors/node_modules/@types/node/http2.d.ts +36 -49
  439. data/lib/condenser/processors/node_modules/@types/node/index.d.ts +8 -25
  440. data/lib/condenser/processors/node_modules/@types/node/module.d.ts +18 -1
  441. data/lib/condenser/processors/node_modules/@types/node/net.d.ts +23 -4
  442. data/lib/condenser/processors/node_modules/@types/node/os.d.ts +157 -127
  443. data/lib/condenser/processors/node_modules/@types/node/package.json +33 -17
  444. data/lib/condenser/processors/node_modules/@types/node/path.d.ts +146 -152
  445. data/lib/condenser/processors/node_modules/@types/node/process.d.ts +12 -0
  446. data/lib/condenser/processors/node_modules/@types/node/querystring.d.ts +1 -4
  447. data/lib/condenser/processors/node_modules/@types/node/readline.d.ts +8 -1
  448. data/lib/condenser/processors/node_modules/@types/node/repl.d.ts +2 -2
  449. data/lib/condenser/processors/node_modules/@types/node/stream.d.ts +18 -1
  450. data/lib/condenser/processors/node_modules/@types/node/tls.d.ts +295 -11
  451. data/lib/condenser/processors/node_modules/@types/node/trace_events.d.ts +3 -3
  452. data/lib/condenser/processors/node_modules/@types/node/ts3.2/fs.d.ts +33 -0
  453. data/lib/condenser/processors/node_modules/@types/node/ts3.2/index.d.ts +1 -5
  454. data/lib/condenser/processors/node_modules/@types/node/ts3.2/util.d.ts +0 -6
  455. data/lib/condenser/processors/node_modules/@types/node/tty.d.ts +2 -1
  456. data/lib/condenser/processors/node_modules/@types/node/url.d.ts +24 -18
  457. data/lib/condenser/processors/node_modules/@types/node/util.d.ts +34 -14
  458. data/lib/condenser/processors/node_modules/@types/node/v8.d.ts +135 -0
  459. data/lib/condenser/processors/node_modules/@types/node/vm.d.ts +15 -0
  460. data/lib/condenser/processors/node_modules/@types/node/worker_threads.d.ts +8 -0
  461. data/lib/condenser/processors/node_modules/@types/node/zlib.d.ts +2 -2
  462. data/lib/condenser/processors/node_modules/{rollup/node_modules/acorn → acorn}/CHANGELOG.md +12 -2
  463. data/lib/condenser/processors/node_modules/{rollup/node_modules/acorn → acorn}/LICENSE +0 -0
  464. data/lib/condenser/processors/node_modules/{rollup/node_modules/acorn → acorn}/README.md +4 -3
  465. data/lib/condenser/processors/node_modules/{rollup/node_modules/acorn → acorn}/bin/acorn +0 -0
  466. data/lib/condenser/processors/node_modules/{rollup/node_modules/acorn → acorn}/dist/acorn.d.ts +1 -1
  467. data/lib/condenser/processors/node_modules/{rollup/node_modules/acorn → acorn}/dist/acorn.js +25 -3
  468. data/lib/condenser/processors/node_modules/{rollup/node_modules/acorn → acorn}/dist/acorn.js.map +0 -0
  469. data/lib/condenser/processors/node_modules/{rollup/node_modules/acorn → acorn}/dist/acorn.mjs +25 -3
  470. data/lib/condenser/processors/node_modules/{rollup/node_modules/acorn → acorn}/dist/acorn.mjs.map +0 -0
  471. data/lib/condenser/processors/node_modules/{rollup/node_modules/acorn → acorn}/dist/bin.js +0 -0
  472. data/lib/condenser/processors/node_modules/{rollup/node_modules/acorn → acorn}/package.json +11 -11
  473. data/lib/condenser/processors/node_modules/browserslist/CHANGELOG.md +29 -0
  474. data/lib/condenser/processors/node_modules/browserslist/README.md +52 -38
  475. data/lib/condenser/processors/node_modules/browserslist/index.js +146 -86
  476. data/lib/condenser/processors/node_modules/browserslist/node.js +67 -37
  477. data/lib/condenser/processors/node_modules/browserslist/package.json +20 -9
  478. data/lib/condenser/processors/node_modules/caniuse-lite/CHANGELOG.md +24 -0
  479. data/lib/condenser/processors/node_modules/caniuse-lite/README.md +7 -1
  480. data/lib/condenser/processors/node_modules/caniuse-lite/data/agents.js +1 -1
  481. data/lib/condenser/processors/node_modules/caniuse-lite/data/browserVersions.js +1 -1
  482. data/lib/condenser/processors/node_modules/caniuse-lite/data/features.js +1 -1
  483. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/aac.js +1 -1
  484. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/abortcontroller.js +1 -1
  485. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/ac3-ec3.js +1 -1
  486. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/accelerometer.js +1 -1
  487. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/addeventlistener.js +1 -1
  488. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/alternate-stylesheet.js +1 -1
  489. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/ambient-light.js +1 -1
  490. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/apng.js +1 -1
  491. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/array-find-index.js +1 -1
  492. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/array-find.js +1 -1
  493. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/array-flat.js +1 -1
  494. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/array-includes.js +1 -1
  495. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/arrow-functions.js +1 -1
  496. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/asmjs.js +1 -1
  497. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/async-clipboard.js +1 -1
  498. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/async-functions.js +1 -1
  499. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/async-iterations-and-generators.js +1 -1
  500. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/atob-btoa.js +1 -1
  501. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/audio-api.js +1 -1
  502. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/audio.js +1 -1
  503. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/audiotracks.js +1 -1
  504. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/autofocus.js +1 -1
  505. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/auxclick.js +1 -1
  506. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/av1.js +1 -1
  507. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/background-attachment.js +1 -1
  508. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/background-clip-text.js +1 -1
  509. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/background-img-opts.js +1 -1
  510. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/background-position-x-y.js +1 -1
  511. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/background-repeat-round-space.js +1 -1
  512. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/background-sync.js +1 -1
  513. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/battery-status.js +1 -1
  514. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/beacon.js +1 -1
  515. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/beforeafterprint.js +1 -1
  516. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/bigint.js +1 -1
  517. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/blobbuilder.js +1 -1
  518. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/bloburls.js +1 -1
  519. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/border-image.js +1 -1
  520. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/border-radius.js +1 -1
  521. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/broadcastchannel.js +1 -1
  522. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/brotli.js +1 -1
  523. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/calc.js +1 -1
  524. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/canvas-blending.js +1 -1
  525. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/canvas-text.js +1 -1
  526. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/canvas.js +1 -1
  527. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/ch-unit.js +1 -1
  528. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/chacha20-poly1305.js +1 -1
  529. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/channel-messaging.js +1 -1
  530. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/childnode-remove.js +1 -1
  531. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/classlist.js +1 -1
  532. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/clear-site-data-header.js +1 -1
  533. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/client-hints-dpr-width-viewport.js +1 -1
  534. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/clipboard.js +1 -1
  535. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/comparedocumentposition.js +1 -1
  536. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/console-basic.js +1 -1
  537. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/console-time.js +1 -1
  538. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/const.js +1 -1
  539. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/constraint-validation.js +1 -1
  540. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/contenteditable.js +1 -1
  541. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/contentsecuritypolicy.js +1 -1
  542. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/contentsecuritypolicy2.js +1 -1
  543. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/cors.js +1 -1
  544. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/createimagebitmap.js +1 -1
  545. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/credential-management.js +1 -1
  546. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/cryptography.js +1 -1
  547. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-all.js +1 -1
  548. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-animation.js +1 -1
  549. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-any-link.js +1 -1
  550. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-appearance.js +1 -1
  551. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-apply-rule.js +1 -1
  552. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-at-counter-style.js +1 -1
  553. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-backdrop-filter.js +1 -1
  554. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-background-offsets.js +1 -1
  555. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-backgroundblendmode.js +1 -1
  556. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-boxdecorationbreak.js +1 -1
  557. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-boxshadow.js +1 -1
  558. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-canvas.js +1 -1
  559. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-caret-color.js +1 -1
  560. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-case-insensitive.js +1 -1
  561. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-clip-path.js +1 -1
  562. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-color-adjust.js +1 -1
  563. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-conic-gradients.js +1 -1
  564. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-containment.js +1 -1
  565. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-counters.js +1 -1
  566. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-crisp-edges.js +1 -1
  567. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-cross-fade.js +1 -1
  568. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-default-pseudo.js +1 -1
  569. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-descendant-gtgt.js +1 -1
  570. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-deviceadaptation.js +1 -1
  571. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-dir-pseudo.js +1 -1
  572. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-display-contents.js +1 -1
  573. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-element-function.js +1 -1
  574. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-env-function.js +1 -1
  575. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-exclusions.js +1 -1
  576. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-featurequeries.js +1 -1
  577. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-filter-function.js +1 -1
  578. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-filters.js +1 -1
  579. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-first-letter.js +1 -1
  580. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-first-line.js +1 -1
  581. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-fixed.js +1 -1
  582. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-focus-visible.js +1 -1
  583. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-focus-within.js +1 -1
  584. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-font-rendering-controls.js +1 -1
  585. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-font-stretch.js +1 -1
  586. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-gencontent.js +1 -1
  587. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-gradients.js +1 -1
  588. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-grid.js +1 -1
  589. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-hanging-punctuation.js +1 -1
  590. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-has.js +1 -1
  591. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-hyphenate.js +1 -1
  592. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-hyphens.js +1 -1
  593. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-image-orientation.js +1 -1
  594. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-image-set.js +1 -1
  595. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-in-out-of-range.js +1 -1
  596. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-indeterminate-pseudo.js +1 -1
  597. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-initial-letter.js +1 -1
  598. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-initial-value.js +1 -1
  599. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-letter-spacing.js +1 -1
  600. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-line-clamp.js +1 -1
  601. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-logical-props.js +1 -1
  602. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-marker-pseudo.js +1 -1
  603. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-masks.js +1 -1
  604. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-matches-pseudo.js +1 -1
  605. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-math-functions.js +1 -1
  606. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-media-interaction.js +1 -1
  607. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-media-resolution.js +1 -1
  608. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-media-scripting.js +1 -1
  609. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-mediaqueries.js +1 -1
  610. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-mixblendmode.js +1 -1
  611. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-motion-paths.js +1 -1
  612. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-namespaces.js +1 -1
  613. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-not-sel-list.js +1 -1
  614. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-nth-child-of.js +1 -1
  615. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-opacity.js +1 -1
  616. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-optional-pseudo.js +1 -1
  617. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-overflow-anchor.js +1 -1
  618. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-overflow.js +1 -1
  619. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-overscroll-behavior.js +1 -1
  620. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-page-break.js +1 -1
  621. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-paged-media.js +1 -1
  622. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-paint-api.js +1 -1
  623. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-placeholder-shown.js +1 -1
  624. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-placeholder.js +1 -1
  625. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-read-only-write.js +1 -1
  626. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-rebeccapurple.js +1 -1
  627. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-reflections.js +1 -1
  628. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-regions.js +1 -1
  629. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-repeating-gradients.js +1 -1
  630. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-resize.js +1 -1
  631. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-revert-value.js +1 -1
  632. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-rrggbbaa.js +1 -1
  633. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-scroll-behavior.js +1 -1
  634. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-scrollbar.js +1 -1
  635. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-sel2.js +1 -1
  636. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-sel3.js +1 -1
  637. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-selection.js +1 -1
  638. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-shapes.js +1 -1
  639. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-snappoints.js +1 -1
  640. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-sticky.js +1 -1
  641. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-subgrid.js +1 -1
  642. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-supports-api.js +1 -1
  643. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-table.js +1 -1
  644. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-text-align-last.js +1 -1
  645. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-text-indent.js +1 -1
  646. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-text-justify.js +1 -1
  647. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-text-orientation.js +1 -1
  648. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-text-spacing.js +1 -1
  649. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-textshadow.js +1 -1
  650. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-touch-action-2.js +1 -1
  651. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-touch-action.js +1 -1
  652. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-transitions.js +1 -1
  653. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-unicode-bidi.js +1 -1
  654. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-unset-value.js +1 -1
  655. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-variables.js +1 -1
  656. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-widows-orphans.js +1 -1
  657. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-writing-mode.js +1 -1
  658. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-zoom.js +1 -1
  659. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css3-attr.js +1 -1
  660. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css3-boxsizing.js +1 -1
  661. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css3-colors.js +1 -1
  662. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css3-cursors-grab.js +1 -1
  663. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css3-cursors-newer.js +1 -1
  664. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css3-cursors.js +1 -1
  665. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css3-tabsize.js +1 -1
  666. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/currentcolor.js +1 -1
  667. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/custom-elements.js +1 -1
  668. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/custom-elementsv1.js +1 -1
  669. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/customevent.js +1 -1
  670. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/datalist.js +1 -1
  671. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/dataset.js +1 -1
  672. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/datauri.js +1 -1
  673. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/date-tolocaledatestring.js +1 -1
  674. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/details.js +1 -1
  675. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/deviceorientation.js +1 -1
  676. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/devicepixelratio.js +1 -1
  677. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/dialog.js +1 -1
  678. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/dispatchevent.js +1 -1
  679. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/do-not-track.js +1 -1
  680. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/document-currentscript.js +1 -1
  681. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/document-evaluate-xpath.js +1 -1
  682. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/document-execcommand.js +1 -1
  683. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/document-scrollingelement.js +1 -1
  684. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/documenthead.js +1 -1
  685. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/dom-manip-convenience.js +1 -1
  686. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/dom-range.js +1 -1
  687. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/domcontentloaded.js +1 -1
  688. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/domfocusin-domfocusout-events.js +1 -1
  689. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/dommatrix.js +1 -1
  690. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/download.js +1 -1
  691. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/dragndrop.js +1 -1
  692. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/element-closest.js +1 -1
  693. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/element-from-point.js +1 -1
  694. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/element-scroll-methods.js +1 -1
  695. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/eme.js +1 -1
  696. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/eot.js +1 -1
  697. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/es5.js +1 -1
  698. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/es6-class.js +1 -1
  699. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/es6-generators.js +1 -1
  700. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/es6-module-dynamic-import.js +1 -1
  701. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/es6-module.js +1 -1
  702. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/es6-number.js +1 -1
  703. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/es6-string-includes.js +1 -1
  704. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/es6.js +1 -1
  705. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/eventsource.js +1 -1
  706. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/feature-policy.js +1 -1
  707. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/fetch.js +1 -1
  708. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/fieldset-disabled.js +1 -1
  709. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/fileapi.js +1 -1
  710. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/filereader.js +1 -1
  711. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/filereadersync.js +1 -1
  712. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/filesystem.js +1 -1
  713. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/flac.js +1 -1
  714. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/flexbox-gap.js +1 -1
  715. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/flexbox.js +1 -1
  716. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/flow-root.js +1 -1
  717. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/focusin-focusout-events.js +1 -1
  718. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/focusoptions-preventscroll.js +1 -1
  719. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/font-family-system-ui.js +1 -1
  720. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/font-feature.js +1 -1
  721. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/font-kerning.js +1 -1
  722. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/font-loading.js +1 -1
  723. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/font-size-adjust.js +1 -1
  724. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/font-smooth.js +1 -1
  725. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/font-unicode-range.js +1 -1
  726. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/font-variant-alternates.js +1 -1
  727. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/font-variant-east-asian.js +1 -1
  728. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/font-variant-numeric.js +1 -1
  729. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/fontface.js +1 -1
  730. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/form-attribute.js +1 -1
  731. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/form-submit-attributes.js +1 -1
  732. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/form-validation.js +1 -1
  733. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/forms.js +1 -1
  734. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/fullscreen.js +1 -1
  735. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/gamepad.js +1 -1
  736. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/geolocation.js +1 -1
  737. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/getboundingclientrect.js +1 -1
  738. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/getcomputedstyle.js +1 -1
  739. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/getelementsbyclassname.js +1 -1
  740. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/getrandomvalues.js +1 -1
  741. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/gyroscope.js +1 -1
  742. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/hardwareconcurrency.js +1 -1
  743. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/hashchange.js +1 -1
  744. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/heif.js +1 -1
  745. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/hevc.js +1 -1
  746. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/hidden.js +1 -1
  747. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/high-resolution-time.js +1 -1
  748. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/history.js +1 -1
  749. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/html-media-capture.js +1 -1
  750. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/html5semantic.js +1 -1
  751. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/http-live-streaming.js +1 -1
  752. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/http2.js +1 -1
  753. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/http3.js +1 -0
  754. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/iframe-sandbox.js +1 -1
  755. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/iframe-seamless.js +1 -1
  756. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/iframe-srcdoc.js +1 -1
  757. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/imagecapture.js +1 -1
  758. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/ime.js +1 -1
  759. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/img-naturalwidth-naturalheight.js +1 -1
  760. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/imports.js +1 -1
  761. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/indeterminate-checkbox.js +1 -1
  762. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/indexeddb.js +1 -1
  763. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/indexeddb2.js +1 -1
  764. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/inline-block.js +1 -1
  765. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/innertext.js +1 -1
  766. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/input-autocomplete-onoff.js +1 -1
  767. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/input-color.js +1 -1
  768. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/input-datetime.js +1 -1
  769. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/input-email-tel-url.js +1 -1
  770. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/input-event.js +1 -1
  771. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/input-file-accept.js +1 -1
  772. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/input-file-directory.js +1 -1
  773. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/input-file-multiple.js +1 -1
  774. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/input-inputmode.js +1 -1
  775. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/input-minlength.js +1 -1
  776. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/input-number.js +1 -1
  777. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/input-pattern.js +1 -1
  778. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/input-placeholder.js +1 -1
  779. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/input-range.js +1 -1
  780. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/input-search.js +1 -1
  781. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/input-selection.js +1 -1
  782. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/insert-adjacent.js +1 -1
  783. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/insertadjacenthtml.js +1 -1
  784. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/internationalization.js +1 -1
  785. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/intersectionobserver.js +1 -1
  786. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/intl-pluralrules.js +1 -1
  787. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/intrinsic-width.js +1 -1
  788. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/jpeg2000.js +1 -1
  789. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/jpegxr.js +1 -1
  790. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/js-regexp-lookbehind.js +1 -1
  791. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/json.js +1 -1
  792. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/justify-content-space-evenly.js +1 -1
  793. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/kerning-pairs-ligatures.js +1 -1
  794. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/keyboardevent-charcode.js +1 -1
  795. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/keyboardevent-code.js +1 -1
  796. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/keyboardevent-getmodifierstate.js +1 -1
  797. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/keyboardevent-key.js +1 -1
  798. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/keyboardevent-location.js +1 -1
  799. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/keyboardevent-which.js +1 -1
  800. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/lazyload.js +1 -1
  801. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/let.js +1 -1
  802. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/link-icon-png.js +1 -1
  803. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/link-icon-svg.js +1 -1
  804. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/link-rel-dns-prefetch.js +1 -1
  805. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/link-rel-modulepreload.js +1 -1
  806. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/link-rel-preconnect.js +1 -1
  807. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/link-rel-prefetch.js +1 -1
  808. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/link-rel-preload.js +1 -1
  809. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/link-rel-prerender.js +1 -1
  810. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/loading-lazy-attr.js +1 -1
  811. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/localecompare.js +1 -1
  812. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/magnetometer.js +1 -1
  813. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/matchesselector.js +1 -1
  814. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/matchmedia.js +1 -1
  815. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/mathml.js +1 -1
  816. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/maxlength.js +1 -1
  817. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/media-attribute.js +1 -1
  818. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/media-fragments.js +1 -1
  819. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/media-session-api.js +1 -1
  820. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/mediacapture-fromelement.js +1 -1
  821. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/mediarecorder.js +1 -1
  822. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/mediasource.js +1 -1
  823. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/menu.js +1 -1
  824. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/meta-theme-color.js +1 -1
  825. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/meter.js +1 -1
  826. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/midi.js +1 -1
  827. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/minmaxwh.js +1 -1
  828. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/mp3.js +1 -1
  829. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/mpeg-dash.js +1 -1
  830. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/mpeg4.js +1 -1
  831. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/multibackgrounds.js +1 -1
  832. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/multicolumn.js +1 -1
  833. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/mutation-events.js +1 -1
  834. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/mutationobserver.js +1 -1
  835. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/namevalue-storage.js +1 -1
  836. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/native-filesystem-api.js +1 -0
  837. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/nav-timing.js +1 -1
  838. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/navigator-language.js +1 -1
  839. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/netinfo.js +1 -1
  840. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/node-contains.js +1 -1
  841. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/node-parentelement.js +1 -1
  842. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/notifications.js +1 -1
  843. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/object-entries.js +1 -1
  844. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/object-fit.js +1 -1
  845. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/object-observe.js +1 -1
  846. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/object-values.js +1 -1
  847. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/objectrtc.js +1 -1
  848. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/offline-apps.js +1 -1
  849. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/offscreencanvas.js +1 -1
  850. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/ogg-vorbis.js +1 -1
  851. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/ogv.js +1 -1
  852. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/ol-reversed.js +1 -1
  853. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/once-event-listener.js +1 -1
  854. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/online-status.js +1 -1
  855. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/opus.js +1 -1
  856. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/orientation-sensor.js +1 -1
  857. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/outline.js +1 -1
  858. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/pad-start-end.js +1 -1
  859. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/page-transition-events.js +1 -1
  860. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/pagevisibility.js +1 -1
  861. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/passive-event-listener.js +1 -1
  862. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/passwordrules.js +1 -1
  863. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/path2d.js +1 -1
  864. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/payment-request.js +1 -1
  865. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/permissions-api.js +1 -1
  866. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/picture-in-picture.js +1 -1
  867. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/picture.js +1 -1
  868. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/ping.js +1 -1
  869. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/png-alpha.js +1 -1
  870. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/pointer-events.js +1 -1
  871. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/pointer.js +1 -1
  872. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/pointerlock.js +1 -1
  873. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/prefers-color-scheme.js +1 -1
  874. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/prefers-reduced-motion.js +1 -1
  875. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/private-class-fields.js +1 -1
  876. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/private-methods-and-accessors.js +1 -1
  877. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/progress.js +1 -1
  878. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/promise-finally.js +1 -1
  879. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/promises.js +1 -1
  880. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/proximity.js +1 -1
  881. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/proxy.js +1 -1
  882. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/public-class-fields.js +1 -1
  883. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/publickeypinning.js +1 -1
  884. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/push-api.js +1 -1
  885. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/queryselector.js +1 -1
  886. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/readonly-attr.js +1 -1
  887. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/referrer-policy.js +1 -1
  888. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/registerprotocolhandler.js +1 -1
  889. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/rel-noopener.js +1 -1
  890. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/rel-noreferrer.js +1 -1
  891. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/rellist.js +1 -1
  892. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/rem.js +1 -1
  893. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/replace-all.js +1 -0
  894. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/requestanimationframe.js +1 -1
  895. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/requestidlecallback.js +1 -1
  896. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/resizeobserver.js +1 -1
  897. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/resource-timing.js +1 -1
  898. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/rest-parameters.js +1 -1
  899. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/rtcpeerconnection.js +1 -1
  900. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/ruby.js +1 -1
  901. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/run-in.js +1 -1
  902. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/same-site-cookie-attribute.js +1 -1
  903. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/screen-orientation.js +1 -1
  904. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/script-async.js +1 -1
  905. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/script-defer.js +1 -1
  906. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/scrollintoview.js +1 -1
  907. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/scrollintoviewifneeded.js +1 -1
  908. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/sdch.js +1 -1
  909. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/selection-api.js +1 -1
  910. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/server-timing.js +1 -1
  911. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/serviceworkers.js +1 -1
  912. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/setimmediate.js +1 -1
  913. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/sha-2.js +1 -1
  914. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/shadowdom.js +1 -1
  915. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/shadowdomv1.js +1 -1
  916. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/sharedarraybuffer.js +1 -1
  917. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/sharedworkers.js +1 -1
  918. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/sni.js +1 -1
  919. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/spdy.js +1 -1
  920. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/speech-recognition.js +1 -1
  921. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/speech-synthesis.js +1 -1
  922. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/spellcheck-attribute.js +1 -1
  923. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/sql-storage.js +1 -1
  924. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/srcset.js +1 -1
  925. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/stopimmediatepropagation.js +1 -1
  926. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/stream.js +1 -1
  927. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/streams.js +1 -1
  928. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/stricttransportsecurity.js +1 -1
  929. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/style-scoped.js +1 -1
  930. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/subresource-integrity.js +1 -1
  931. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/svg-css.js +1 -1
  932. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/svg-filters.js +1 -1
  933. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/svg-fonts.js +1 -1
  934. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/svg-fragment.js +1 -1
  935. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/svg-html.js +1 -1
  936. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/svg-html5.js +1 -1
  937. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/svg-img.js +1 -1
  938. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/svg-smil.js +1 -1
  939. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/svg.js +1 -1
  940. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/sxg.js +1 -0
  941. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/symbols.js +1 -1
  942. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/tabindex-attr.js +1 -1
  943. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/template-literals.js +1 -1
  944. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/template.js +1 -1
  945. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/testfeat.js +1 -1
  946. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/text-decoration.js +1 -1
  947. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/text-emphasis.js +1 -1
  948. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/text-overflow.js +1 -1
  949. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/text-size-adjust.js +1 -1
  950. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/text-stroke.js +1 -1
  951. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/text-underline-offset.js +1 -0
  952. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/textcontent.js +1 -1
  953. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/textencoder.js +1 -1
  954. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/tls1-1.js +1 -1
  955. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/tls1-2.js +1 -1
  956. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/tls1-3.js +1 -1
  957. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/token-binding.js +1 -1
  958. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/touch.js +1 -1
  959. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/transforms2d.js +1 -1
  960. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/transforms3d.js +1 -1
  961. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/ttf.js +1 -1
  962. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/typedarrays.js +1 -1
  963. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/u2f.js +1 -1
  964. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/unhandledrejection.js +1 -1
  965. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/upgradeinsecurerequests.js +1 -1
  966. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/url.js +1 -1
  967. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/urlsearchparams.js +1 -1
  968. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/use-strict.js +1 -1
  969. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/user-select-none.js +1 -1
  970. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/user-timing.js +1 -1
  971. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/variable-fonts.js +1 -1
  972. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/vibration.js +1 -1
  973. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/video.js +1 -1
  974. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/videotracks.js +1 -1
  975. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/viewport-units.js +1 -1
  976. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/wai-aria.js +1 -1
  977. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/wasm.js +1 -1
  978. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/wav.js +1 -1
  979. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/wbr-element.js +1 -1
  980. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/web-animation.js +1 -1
  981. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/web-app-manifest.js +1 -1
  982. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/web-bluetooth.js +1 -1
  983. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/web-share.js +1 -1
  984. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/webauthn.js +1 -1
  985. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/webgl.js +1 -1
  986. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/webgl2.js +1 -1
  987. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/webhid.js +1 -0
  988. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/webm.js +1 -1
  989. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/webp.js +1 -1
  990. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/websockets.js +1 -1
  991. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/webusb.js +1 -1
  992. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/webvr.js +1 -1
  993. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/webvtt.js +1 -1
  994. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/webworkers.js +1 -1
  995. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/webxr.js +1 -0
  996. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/will-change.js +1 -1
  997. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/woff.js +1 -1
  998. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/woff2.js +1 -1
  999. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/word-break.js +1 -1
  1000. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/wordwrap.js +1 -1
  1001. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/x-doc-messaging.js +1 -1
  1002. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/x-frame-options.js +1 -1
  1003. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/xhr2.js +1 -1
  1004. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/xhtml.js +1 -1
  1005. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/xhtmlsmil.js +1 -1
  1006. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/xml-serializer.js +1 -1
  1007. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/AD.js +1 -1
  1008. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/AE.js +1 -1
  1009. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/AF.js +1 -1
  1010. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/AG.js +1 -1
  1011. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/AI.js +1 -1
  1012. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/AL.js +1 -1
  1013. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/AM.js +1 -1
  1014. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/AO.js +1 -1
  1015. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/AR.js +1 -1
  1016. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/AS.js +1 -1
  1017. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/AT.js +1 -1
  1018. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/AU.js +1 -1
  1019. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/AW.js +1 -1
  1020. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/AX.js +1 -1
  1021. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/AZ.js +1 -1
  1022. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/BA.js +1 -1
  1023. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/BB.js +1 -1
  1024. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/BD.js +1 -1
  1025. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/BE.js +1 -1
  1026. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/BF.js +1 -1
  1027. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/BG.js +1 -1
  1028. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/BH.js +1 -1
  1029. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/BI.js +1 -1
  1030. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/BJ.js +1 -1
  1031. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/BM.js +1 -1
  1032. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/BN.js +1 -1
  1033. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/BO.js +1 -1
  1034. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/BR.js +1 -1
  1035. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/BS.js +1 -1
  1036. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/BT.js +1 -1
  1037. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/BW.js +1 -1
  1038. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/BY.js +1 -1
  1039. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/BZ.js +1 -1
  1040. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/CA.js +1 -1
  1041. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/CD.js +1 -1
  1042. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/CF.js +1 -1
  1043. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/CG.js +1 -1
  1044. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/CH.js +1 -1
  1045. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/CI.js +1 -1
  1046. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/CK.js +1 -1
  1047. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/CL.js +1 -1
  1048. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/CM.js +1 -1
  1049. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/CN.js +1 -1
  1050. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/CO.js +1 -1
  1051. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/CR.js +1 -1
  1052. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/CU.js +1 -1
  1053. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/CV.js +1 -1
  1054. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/CX.js +1 -1
  1055. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/CY.js +1 -1
  1056. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/CZ.js +1 -1
  1057. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/DE.js +1 -1
  1058. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/DJ.js +1 -1
  1059. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/DK.js +1 -1
  1060. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/DM.js +1 -1
  1061. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/DO.js +1 -1
  1062. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/DZ.js +1 -1
  1063. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/EC.js +1 -1
  1064. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/EE.js +1 -1
  1065. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/EG.js +1 -1
  1066. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/ER.js +1 -1
  1067. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/ES.js +1 -1
  1068. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/ET.js +1 -1
  1069. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/FI.js +1 -1
  1070. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/FJ.js +1 -1
  1071. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/FK.js +1 -1
  1072. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/FM.js +1 -1
  1073. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/FO.js +1 -1
  1074. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/FR.js +1 -1
  1075. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/GA.js +1 -1
  1076. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/GB.js +1 -1
  1077. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/GD.js +1 -1
  1078. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/GE.js +1 -1
  1079. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/GF.js +1 -1
  1080. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/GG.js +1 -1
  1081. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/GH.js +1 -1
  1082. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/GI.js +1 -1
  1083. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/GL.js +1 -1
  1084. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/GM.js +1 -1
  1085. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/GN.js +1 -1
  1086. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/GP.js +1 -1
  1087. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/GQ.js +1 -1
  1088. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/GR.js +1 -1
  1089. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/GT.js +1 -1
  1090. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/GU.js +1 -1
  1091. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/GW.js +1 -1
  1092. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/GY.js +1 -1
  1093. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/HK.js +1 -1
  1094. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/HN.js +1 -1
  1095. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/HR.js +1 -1
  1096. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/HT.js +1 -1
  1097. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/HU.js +1 -1
  1098. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/ID.js +1 -1
  1099. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/IE.js +1 -1
  1100. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/IL.js +1 -1
  1101. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/IM.js +1 -1
  1102. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/IN.js +1 -1
  1103. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/IQ.js +1 -1
  1104. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/IR.js +1 -1
  1105. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/IS.js +1 -1
  1106. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/IT.js +1 -1
  1107. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/JE.js +1 -1
  1108. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/JM.js +1 -1
  1109. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/JO.js +1 -1
  1110. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/JP.js +1 -1
  1111. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/KE.js +1 -1
  1112. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/KG.js +1 -1
  1113. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/KH.js +1 -1
  1114. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/KI.js +1 -1
  1115. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/KM.js +1 -1
  1116. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/KN.js +1 -1
  1117. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/KP.js +1 -1
  1118. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/KR.js +1 -1
  1119. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/KW.js +1 -1
  1120. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/KY.js +1 -1
  1121. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/KZ.js +1 -1
  1122. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/LA.js +1 -1
  1123. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/LB.js +1 -1
  1124. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/LC.js +1 -1
  1125. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/LI.js +1 -1
  1126. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/LK.js +1 -1
  1127. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/LR.js +1 -1
  1128. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/LS.js +1 -1
  1129. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/LT.js +1 -1
  1130. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/LU.js +1 -1
  1131. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/LV.js +1 -1
  1132. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/LY.js +1 -1
  1133. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/MA.js +1 -1
  1134. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/MC.js +1 -1
  1135. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/MD.js +1 -1
  1136. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/ME.js +1 -1
  1137. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/MG.js +1 -1
  1138. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/MH.js +1 -1
  1139. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/MK.js +1 -1
  1140. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/ML.js +1 -1
  1141. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/MM.js +1 -1
  1142. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/MN.js +1 -1
  1143. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/MO.js +1 -1
  1144. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/MP.js +1 -1
  1145. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/MQ.js +1 -1
  1146. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/MR.js +1 -1
  1147. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/MS.js +1 -1
  1148. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/MT.js +1 -1
  1149. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/MU.js +1 -1
  1150. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/MV.js +1 -1
  1151. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/MW.js +1 -1
  1152. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/MX.js +1 -1
  1153. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/MY.js +1 -1
  1154. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/MZ.js +1 -1
  1155. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/NA.js +1 -1
  1156. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/NC.js +1 -1
  1157. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/NE.js +1 -1
  1158. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/NF.js +1 -1
  1159. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/NG.js +1 -1
  1160. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/NI.js +1 -1
  1161. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/NL.js +1 -1
  1162. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/NO.js +1 -1
  1163. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/NP.js +1 -1
  1164. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/NR.js +1 -1
  1165. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/NU.js +1 -1
  1166. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/NZ.js +1 -1
  1167. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/OM.js +1 -1
  1168. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/PA.js +1 -1
  1169. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/PE.js +1 -1
  1170. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/PF.js +1 -1
  1171. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/PG.js +1 -1
  1172. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/PH.js +1 -1
  1173. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/PK.js +1 -1
  1174. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/PL.js +1 -1
  1175. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/PM.js +1 -1
  1176. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/PN.js +1 -1
  1177. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/PR.js +1 -1
  1178. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/PS.js +1 -1
  1179. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/PT.js +1 -1
  1180. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/PW.js +1 -1
  1181. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/PY.js +1 -1
  1182. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/QA.js +1 -1
  1183. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/RE.js +1 -1
  1184. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/RO.js +1 -1
  1185. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/RS.js +1 -1
  1186. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/RU.js +1 -1
  1187. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/RW.js +1 -1
  1188. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/SA.js +1 -1
  1189. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/SB.js +1 -1
  1190. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/SC.js +1 -1
  1191. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/SD.js +1 -1
  1192. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/SE.js +1 -1
  1193. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/SG.js +1 -1
  1194. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/SH.js +1 -1
  1195. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/SI.js +1 -1
  1196. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/SK.js +1 -1
  1197. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/SL.js +1 -1
  1198. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/SM.js +1 -1
  1199. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/SN.js +1 -1
  1200. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/SO.js +1 -1
  1201. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/SR.js +1 -1
  1202. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/ST.js +1 -1
  1203. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/SV.js +1 -1
  1204. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/SY.js +1 -1
  1205. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/SZ.js +1 -1
  1206. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/TC.js +1 -1
  1207. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/TD.js +1 -1
  1208. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/TG.js +1 -1
  1209. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/TH.js +1 -1
  1210. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/TJ.js +1 -1
  1211. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/TK.js +1 -1
  1212. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/TL.js +1 -1
  1213. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/TM.js +1 -1
  1214. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/TN.js +1 -1
  1215. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/TO.js +1 -1
  1216. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/TR.js +1 -1
  1217. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/TT.js +1 -1
  1218. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/TV.js +1 -1
  1219. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/TW.js +1 -1
  1220. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/TZ.js +1 -1
  1221. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/UA.js +1 -1
  1222. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/UG.js +1 -1
  1223. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/US.js +1 -1
  1224. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/UY.js +1 -1
  1225. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/UZ.js +1 -1
  1226. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/VA.js +1 -1
  1227. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/VC.js +1 -1
  1228. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/VE.js +1 -1
  1229. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/VG.js +1 -1
  1230. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/VI.js +1 -1
  1231. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/VN.js +1 -1
  1232. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/VU.js +1 -1
  1233. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/WF.js +1 -1
  1234. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/WS.js +1 -1
  1235. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/YE.js +1 -1
  1236. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/YT.js +1 -1
  1237. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/ZA.js +1 -1
  1238. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/ZM.js +1 -1
  1239. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/ZW.js +1 -1
  1240. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/alt-af.js +1 -1
  1241. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/alt-an.js +1 -1
  1242. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/alt-as.js +1 -1
  1243. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/alt-eu.js +1 -1
  1244. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/alt-na.js +1 -1
  1245. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/alt-oc.js +1 -1
  1246. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/alt-sa.js +1 -1
  1247. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/alt-ww.js +1 -1
  1248. data/lib/condenser/processors/node_modules/caniuse-lite/package.json +10 -10
  1249. data/lib/condenser/processors/node_modules/convert-source-map/package.json +13 -10
  1250. data/lib/condenser/processors/node_modules/core-js-compat/LICENSE +1 -1
  1251. data/lib/condenser/processors/node_modules/core-js-compat/README.md +59 -23
  1252. data/lib/condenser/processors/node_modules/core-js-compat/compat.js +56 -0
  1253. data/lib/condenser/processors/node_modules/core-js-compat/data.json +1632 -1288
  1254. data/lib/condenser/processors/node_modules/core-js-compat/entries.json +5462 -4712
  1255. data/lib/condenser/processors/node_modules/core-js-compat/external.json +12 -0
  1256. data/lib/condenser/processors/node_modules/core-js-compat/get-modules-list-for-target-version.js +5 -4
  1257. data/lib/condenser/processors/node_modules/core-js-compat/helpers.js +29 -0
  1258. data/lib/condenser/processors/node_modules/core-js-compat/index.js +11 -102
  1259. data/lib/condenser/processors/node_modules/core-js-compat/modules-by-versions.json +45 -0
  1260. data/lib/condenser/processors/node_modules/core-js-compat/modules.json +336 -0
  1261. data/lib/condenser/processors/node_modules/core-js-compat/node_modules/semver/CHANGELOG.md +4 -0
  1262. data/lib/condenser/processors/node_modules/core-js-compat/node_modules/semver/README.md +58 -2
  1263. data/lib/condenser/processors/node_modules/core-js-compat/node_modules/semver/bin/semver.js +78 -79
  1264. data/lib/condenser/processors/node_modules/core-js-compat/node_modules/semver/classes/comparator.js +139 -0
  1265. data/lib/condenser/processors/node_modules/core-js-compat/node_modules/semver/classes/index.js +5 -0
  1266. data/lib/condenser/processors/node_modules/core-js-compat/node_modules/semver/classes/range.js +448 -0
  1267. data/lib/condenser/processors/node_modules/core-js-compat/node_modules/semver/classes/semver.js +290 -0
  1268. data/lib/condenser/processors/node_modules/core-js-compat/node_modules/semver/functions/clean.js +6 -0
  1269. data/lib/condenser/processors/node_modules/core-js-compat/node_modules/semver/functions/cmp.js +48 -0
  1270. data/lib/condenser/processors/node_modules/core-js-compat/node_modules/semver/functions/coerce.js +51 -0
  1271. data/lib/condenser/processors/node_modules/core-js-compat/node_modules/semver/functions/compare-build.js +7 -0
  1272. data/lib/condenser/processors/node_modules/core-js-compat/node_modules/semver/functions/compare-loose.js +3 -0
  1273. data/lib/condenser/processors/node_modules/core-js-compat/node_modules/semver/functions/compare.js +5 -0
  1274. data/lib/condenser/processors/node_modules/core-js-compat/node_modules/semver/functions/diff.js +25 -0
  1275. data/lib/condenser/processors/node_modules/core-js-compat/node_modules/semver/functions/eq.js +3 -0
  1276. data/lib/condenser/processors/node_modules/core-js-compat/node_modules/semver/functions/gt.js +3 -0
  1277. data/lib/condenser/processors/node_modules/core-js-compat/node_modules/semver/functions/gte.js +3 -0
  1278. data/lib/condenser/processors/node_modules/core-js-compat/node_modules/semver/functions/inc.js +15 -0
  1279. data/lib/condenser/processors/node_modules/core-js-compat/node_modules/semver/functions/lt.js +3 -0
  1280. data/lib/condenser/processors/node_modules/core-js-compat/node_modules/semver/functions/lte.js +3 -0
  1281. data/lib/condenser/processors/node_modules/core-js-compat/node_modules/semver/functions/major.js +3 -0
  1282. data/lib/condenser/processors/node_modules/core-js-compat/node_modules/semver/functions/minor.js +3 -0
  1283. data/lib/condenser/processors/node_modules/core-js-compat/node_modules/semver/functions/neq.js +3 -0
  1284. data/lib/condenser/processors/node_modules/core-js-compat/node_modules/semver/functions/parse.js +37 -0
  1285. data/lib/condenser/processors/node_modules/core-js-compat/node_modules/semver/functions/patch.js +3 -0
  1286. data/lib/condenser/processors/node_modules/core-js-compat/node_modules/semver/functions/prerelease.js +6 -0
  1287. data/lib/condenser/processors/node_modules/core-js-compat/node_modules/semver/functions/rcompare.js +3 -0
  1288. data/lib/condenser/processors/node_modules/core-js-compat/node_modules/semver/functions/rsort.js +3 -0
  1289. data/lib/condenser/processors/node_modules/core-js-compat/node_modules/semver/functions/satisfies.js +10 -0
  1290. data/lib/condenser/processors/node_modules/core-js-compat/node_modules/semver/functions/sort.js +3 -0
  1291. data/lib/condenser/processors/node_modules/core-js-compat/node_modules/semver/functions/valid.js +6 -0
  1292. data/lib/condenser/processors/node_modules/core-js-compat/node_modules/semver/index.js +64 -0
  1293. data/lib/condenser/processors/node_modules/core-js-compat/node_modules/semver/internal/constants.js +17 -0
  1294. data/lib/condenser/processors/node_modules/core-js-compat/node_modules/semver/internal/debug.js +9 -0
  1295. data/lib/condenser/processors/node_modules/core-js-compat/node_modules/semver/internal/identifiers.js +23 -0
  1296. data/lib/condenser/processors/node_modules/core-js-compat/node_modules/semver/internal/re.js +179 -0
  1297. data/lib/condenser/processors/node_modules/core-js-compat/node_modules/semver/package.json +22 -16
  1298. data/lib/condenser/processors/node_modules/core-js-compat/node_modules/semver/ranges/gtr.js +4 -0
  1299. data/lib/condenser/processors/node_modules/core-js-compat/node_modules/semver/ranges/intersects.js +7 -0
  1300. data/lib/condenser/processors/node_modules/core-js-compat/node_modules/semver/ranges/ltr.js +4 -0
  1301. data/lib/condenser/processors/node_modules/core-js-compat/node_modules/semver/ranges/max-satisfying.js +25 -0
  1302. data/lib/condenser/processors/node_modules/core-js-compat/node_modules/semver/ranges/min-satisfying.js +24 -0
  1303. data/lib/condenser/processors/node_modules/core-js-compat/node_modules/semver/ranges/min-version.js +57 -0
  1304. data/lib/condenser/processors/node_modules/core-js-compat/node_modules/semver/ranges/outside.js +80 -0
  1305. data/lib/condenser/processors/node_modules/core-js-compat/node_modules/semver/ranges/to-comparators.js +8 -0
  1306. data/lib/condenser/processors/node_modules/core-js-compat/node_modules/semver/ranges/valid.js +11 -0
  1307. data/lib/condenser/processors/node_modules/core-js-compat/package.json +18 -14
  1308. data/lib/condenser/processors/node_modules/core-js-compat/targets-parser.js +72 -0
  1309. data/lib/condenser/processors/node_modules/core-js-pure/LICENSE +1 -1
  1310. data/lib/condenser/processors/node_modules/core-js-pure/configurator.js +7 -0
  1311. data/lib/condenser/processors/node_modules/core-js-pure/es/global-this.js +3 -0
  1312. data/lib/condenser/processors/node_modules/core-js-pure/es/index.js +6 -1
  1313. data/lib/condenser/processors/node_modules/core-js-pure/es/json/index.js +1 -0
  1314. data/lib/condenser/processors/node_modules/core-js-pure/es/json/stringify.js +6 -3
  1315. data/lib/condenser/processors/node_modules/core-js-pure/es/regexp/index.js +2 -0
  1316. data/lib/condenser/processors/node_modules/core-js-pure/es/regexp/sticky.js +5 -0
  1317. data/lib/condenser/processors/node_modules/core-js-pure/es/regexp/test.js +6 -0
  1318. data/lib/condenser/processors/node_modules/core-js-pure/es/string/index.js +1 -0
  1319. data/lib/condenser/processors/node_modules/core-js-pure/es/string/match.js +1 -0
  1320. data/lib/condenser/processors/node_modules/core-js-pure/es/string/replace.js +1 -0
  1321. data/lib/condenser/processors/node_modules/core-js-pure/es/string/search.js +1 -0
  1322. data/lib/condenser/processors/node_modules/core-js-pure/es/string/split.js +1 -0
  1323. data/lib/condenser/processors/node_modules/core-js-pure/es/symbol/async-iterator.js +1 -1
  1324. data/lib/condenser/processors/node_modules/core-js-pure/es/symbol/has-instance.js +1 -1
  1325. data/lib/condenser/processors/node_modules/core-js-pure/es/symbol/is-concat-spreadable.js +1 -1
  1326. data/lib/condenser/processors/node_modules/core-js-pure/es/symbol/iterator.js +1 -1
  1327. data/lib/condenser/processors/node_modules/core-js-pure/es/symbol/match-all.js +1 -1
  1328. data/lib/condenser/processors/node_modules/core-js-pure/es/symbol/match.js +1 -1
  1329. data/lib/condenser/processors/node_modules/core-js-pure/es/symbol/replace.js +1 -1
  1330. data/lib/condenser/processors/node_modules/core-js-pure/es/symbol/search.js +1 -1
  1331. data/lib/condenser/processors/node_modules/core-js-pure/es/symbol/species.js +1 -1
  1332. data/lib/condenser/processors/node_modules/core-js-pure/es/symbol/split.js +1 -1
  1333. data/lib/condenser/processors/node_modules/core-js-pure/es/symbol/to-primitive.js +1 -1
  1334. data/lib/condenser/processors/node_modules/core-js-pure/es/symbol/to-string-tag.js +1 -1
  1335. data/lib/condenser/processors/node_modules/core-js-pure/es/symbol/unscopables.js +1 -1
  1336. data/lib/condenser/processors/node_modules/core-js-pure/features/array-buffer/constructor.js +3 -1
  1337. data/lib/condenser/processors/node_modules/core-js-pure/features/array-buffer/index.js +3 -1
  1338. data/lib/condenser/processors/node_modules/core-js-pure/features/array-buffer/is-view.js +3 -1
  1339. data/lib/condenser/processors/node_modules/core-js-pure/features/array-buffer/slice.js +3 -1
  1340. data/lib/condenser/processors/node_modules/core-js-pure/features/array/concat.js +3 -1
  1341. data/lib/condenser/processors/node_modules/core-js-pure/features/array/copy-within.js +3 -1
  1342. data/lib/condenser/processors/node_modules/core-js-pure/features/array/entries.js +3 -1
  1343. data/lib/condenser/processors/node_modules/core-js-pure/features/array/every.js +3 -1
  1344. data/lib/condenser/processors/node_modules/core-js-pure/features/array/fill.js +3 -1
  1345. data/lib/condenser/processors/node_modules/core-js-pure/features/array/filter.js +3 -1
  1346. data/lib/condenser/processors/node_modules/core-js-pure/features/array/find-index.js +3 -1
  1347. data/lib/condenser/processors/node_modules/core-js-pure/features/array/find.js +3 -1
  1348. data/lib/condenser/processors/node_modules/core-js-pure/features/array/flat-map.js +3 -1
  1349. data/lib/condenser/processors/node_modules/core-js-pure/features/array/flat.js +3 -1
  1350. data/lib/condenser/processors/node_modules/core-js-pure/features/array/for-each.js +3 -1
  1351. data/lib/condenser/processors/node_modules/core-js-pure/features/array/from.js +3 -1
  1352. data/lib/condenser/processors/node_modules/core-js-pure/features/array/includes.js +3 -1
  1353. data/lib/condenser/processors/node_modules/core-js-pure/features/array/index-of.js +3 -1
  1354. data/lib/condenser/processors/node_modules/core-js-pure/features/array/index.js +3 -2
  1355. data/lib/condenser/processors/node_modules/core-js-pure/features/array/is-array.js +3 -1
  1356. data/lib/condenser/processors/node_modules/core-js-pure/features/array/iterator.js +3 -1
  1357. data/lib/condenser/processors/node_modules/core-js-pure/features/array/join.js +3 -1
  1358. data/lib/condenser/processors/node_modules/core-js-pure/features/array/keys.js +3 -1
  1359. data/lib/condenser/processors/node_modules/core-js-pure/features/array/last-index-of.js +3 -1
  1360. data/lib/condenser/processors/node_modules/core-js-pure/features/array/map.js +3 -1
  1361. data/lib/condenser/processors/node_modules/core-js-pure/features/array/of.js +3 -1
  1362. data/lib/condenser/processors/node_modules/core-js-pure/features/array/reduce-right.js +3 -1
  1363. data/lib/condenser/processors/node_modules/core-js-pure/features/array/reduce.js +3 -1
  1364. data/lib/condenser/processors/node_modules/core-js-pure/features/array/reverse.js +3 -1
  1365. data/lib/condenser/processors/node_modules/core-js-pure/features/array/slice.js +3 -1
  1366. data/lib/condenser/processors/node_modules/core-js-pure/features/array/some.js +3 -1
  1367. data/lib/condenser/processors/node_modules/core-js-pure/features/array/sort.js +3 -1
  1368. data/lib/condenser/processors/node_modules/core-js-pure/features/array/splice.js +3 -1
  1369. data/lib/condenser/processors/node_modules/core-js-pure/features/array/values.js +3 -1
  1370. data/lib/condenser/processors/node_modules/core-js-pure/features/array/virtual/concat.js +3 -1
  1371. data/lib/condenser/processors/node_modules/core-js-pure/features/array/virtual/copy-within.js +3 -1
  1372. data/lib/condenser/processors/node_modules/core-js-pure/features/array/virtual/entries.js +3 -1
  1373. data/lib/condenser/processors/node_modules/core-js-pure/features/array/virtual/every.js +3 -1
  1374. data/lib/condenser/processors/node_modules/core-js-pure/features/array/virtual/fill.js +3 -1
  1375. data/lib/condenser/processors/node_modules/core-js-pure/features/array/virtual/filter.js +3 -1
  1376. data/lib/condenser/processors/node_modules/core-js-pure/features/array/virtual/find-index.js +3 -1
  1377. data/lib/condenser/processors/node_modules/core-js-pure/features/array/virtual/find.js +3 -1
  1378. data/lib/condenser/processors/node_modules/core-js-pure/features/array/virtual/flat-map.js +3 -1
  1379. data/lib/condenser/processors/node_modules/core-js-pure/features/array/virtual/flat.js +3 -1
  1380. data/lib/condenser/processors/node_modules/core-js-pure/features/array/virtual/for-each.js +3 -1
  1381. data/lib/condenser/processors/node_modules/core-js-pure/features/array/virtual/includes.js +3 -1
  1382. data/lib/condenser/processors/node_modules/core-js-pure/features/array/virtual/index-of.js +3 -1
  1383. data/lib/condenser/processors/node_modules/core-js-pure/features/array/virtual/index.js +3 -1
  1384. data/lib/condenser/processors/node_modules/core-js-pure/features/array/virtual/iterator.js +3 -1
  1385. data/lib/condenser/processors/node_modules/core-js-pure/features/array/virtual/join.js +3 -1
  1386. data/lib/condenser/processors/node_modules/core-js-pure/features/array/virtual/keys.js +3 -1
  1387. data/lib/condenser/processors/node_modules/core-js-pure/features/array/virtual/last-index-of.js +3 -1
  1388. data/lib/condenser/processors/node_modules/core-js-pure/features/array/virtual/map.js +3 -1
  1389. data/lib/condenser/processors/node_modules/core-js-pure/features/array/virtual/reduce-right.js +3 -1
  1390. data/lib/condenser/processors/node_modules/core-js-pure/features/array/virtual/reduce.js +3 -1
  1391. data/lib/condenser/processors/node_modules/core-js-pure/features/array/virtual/reverse.js +3 -1
  1392. data/lib/condenser/processors/node_modules/core-js-pure/features/array/virtual/slice.js +3 -1
  1393. data/lib/condenser/processors/node_modules/core-js-pure/features/array/virtual/some.js +3 -1
  1394. data/lib/condenser/processors/node_modules/core-js-pure/features/array/virtual/sort.js +3 -1
  1395. data/lib/condenser/processors/node_modules/core-js-pure/features/array/virtual/splice.js +3 -1
  1396. data/lib/condenser/processors/node_modules/core-js-pure/features/array/virtual/values.js +3 -1
  1397. data/lib/condenser/processors/node_modules/core-js-pure/features/async-iterator/as-indexed-pairs.js +10 -0
  1398. data/lib/condenser/processors/node_modules/core-js-pure/features/async-iterator/drop.js +10 -0
  1399. data/lib/condenser/processors/node_modules/core-js-pure/features/async-iterator/every.js +10 -0
  1400. data/lib/condenser/processors/node_modules/core-js-pure/features/async-iterator/filter.js +10 -0
  1401. data/lib/condenser/processors/node_modules/core-js-pure/features/async-iterator/find.js +10 -0
  1402. data/lib/condenser/processors/node_modules/core-js-pure/features/async-iterator/flat-map.js +10 -0
  1403. data/lib/condenser/processors/node_modules/core-js-pure/features/async-iterator/for-each.js +10 -0
  1404. data/lib/condenser/processors/node_modules/core-js-pure/features/async-iterator/from.js +10 -0
  1405. data/lib/condenser/processors/node_modules/core-js-pure/features/async-iterator/index.js +22 -0
  1406. data/lib/condenser/processors/node_modules/core-js-pure/features/async-iterator/map.js +10 -0
  1407. data/lib/condenser/processors/node_modules/core-js-pure/features/async-iterator/reduce.js +10 -0
  1408. data/lib/condenser/processors/node_modules/core-js-pure/features/async-iterator/some.js +10 -0
  1409. data/lib/condenser/processors/node_modules/core-js-pure/features/async-iterator/take.js +10 -0
  1410. data/lib/condenser/processors/node_modules/core-js-pure/features/async-iterator/to-array.js +10 -0
  1411. data/lib/condenser/processors/node_modules/core-js-pure/features/clear-immediate.js +3 -1
  1412. data/lib/condenser/processors/node_modules/core-js-pure/features/data-view/index.js +3 -1
  1413. data/lib/condenser/processors/node_modules/core-js-pure/features/date/index.js +3 -1
  1414. data/lib/condenser/processors/node_modules/core-js-pure/features/date/now.js +3 -1
  1415. data/lib/condenser/processors/node_modules/core-js-pure/features/date/to-iso-string.js +3 -1
  1416. data/lib/condenser/processors/node_modules/core-js-pure/features/date/to-json.js +3 -1
  1417. data/lib/condenser/processors/node_modules/core-js-pure/features/date/to-primitive.js +3 -1
  1418. data/lib/condenser/processors/node_modules/core-js-pure/features/date/to-string.js +3 -1
  1419. data/lib/condenser/processors/node_modules/core-js-pure/features/dom-collections/for-each.js +3 -1
  1420. data/lib/condenser/processors/node_modules/core-js-pure/features/dom-collections/index.js +3 -1
  1421. data/lib/condenser/processors/node_modules/core-js-pure/features/dom-collections/iterator.js +3 -1
  1422. data/lib/condenser/processors/node_modules/core-js-pure/features/function/bind.js +3 -1
  1423. data/lib/condenser/processors/node_modules/core-js-pure/features/function/has-instance.js +3 -1
  1424. data/lib/condenser/processors/node_modules/core-js-pure/features/function/index.js +3 -1
  1425. data/lib/condenser/processors/node_modules/core-js-pure/features/function/name.js +3 -1
  1426. data/lib/condenser/processors/node_modules/core-js-pure/features/function/virtual/bind.js +3 -1
  1427. data/lib/condenser/processors/node_modules/core-js-pure/features/function/virtual/index.js +3 -1
  1428. data/lib/condenser/processors/node_modules/core-js-pure/features/get-iterator-method.js +2 -1
  1429. data/lib/condenser/processors/node_modules/core-js-pure/features/get-iterator.js +2 -1
  1430. data/lib/condenser/processors/node_modules/core-js-pure/features/global-this.js +4 -1
  1431. data/lib/condenser/processors/node_modules/core-js-pure/features/index.js +3 -1
  1432. data/lib/condenser/processors/node_modules/core-js-pure/features/instance/bind.js +3 -1
  1433. data/lib/condenser/processors/node_modules/core-js-pure/features/instance/code-point-at.js +3 -1
  1434. data/lib/condenser/processors/node_modules/core-js-pure/features/instance/concat.js +3 -1
  1435. data/lib/condenser/processors/node_modules/core-js-pure/features/instance/copy-within.js +3 -1
  1436. data/lib/condenser/processors/node_modules/core-js-pure/features/instance/ends-with.js +3 -1
  1437. data/lib/condenser/processors/node_modules/core-js-pure/features/instance/entries.js +3 -1
  1438. data/lib/condenser/processors/node_modules/core-js-pure/features/instance/every.js +3 -1
  1439. data/lib/condenser/processors/node_modules/core-js-pure/features/instance/fill.js +3 -1
  1440. data/lib/condenser/processors/node_modules/core-js-pure/features/instance/filter.js +3 -1
  1441. data/lib/condenser/processors/node_modules/core-js-pure/features/instance/find-index.js +3 -1
  1442. data/lib/condenser/processors/node_modules/core-js-pure/features/instance/find.js +3 -1
  1443. data/lib/condenser/processors/node_modules/core-js-pure/features/instance/flags.js +3 -1
  1444. data/lib/condenser/processors/node_modules/core-js-pure/features/instance/flat-map.js +3 -1
  1445. data/lib/condenser/processors/node_modules/core-js-pure/features/instance/flat.js +3 -1
  1446. data/lib/condenser/processors/node_modules/core-js-pure/features/instance/for-each.js +3 -1
  1447. data/lib/condenser/processors/node_modules/core-js-pure/features/instance/includes.js +3 -1
  1448. data/lib/condenser/processors/node_modules/core-js-pure/features/instance/index-of.js +3 -1
  1449. data/lib/condenser/processors/node_modules/core-js-pure/features/instance/keys.js +3 -1
  1450. data/lib/condenser/processors/node_modules/core-js-pure/features/instance/last-index-of.js +3 -1
  1451. data/lib/condenser/processors/node_modules/core-js-pure/features/instance/map.js +3 -1
  1452. data/lib/condenser/processors/node_modules/core-js-pure/features/instance/match-all.js +6 -1
  1453. data/lib/condenser/processors/node_modules/core-js-pure/features/instance/pad-end.js +3 -1
  1454. data/lib/condenser/processors/node_modules/core-js-pure/features/instance/pad-start.js +3 -1
  1455. data/lib/condenser/processors/node_modules/core-js-pure/features/instance/reduce-right.js +3 -1
  1456. data/lib/condenser/processors/node_modules/core-js-pure/features/instance/reduce.js +3 -1
  1457. data/lib/condenser/processors/node_modules/core-js-pure/features/instance/repeat.js +3 -1
  1458. data/lib/condenser/processors/node_modules/core-js-pure/features/instance/reverse.js +3 -1
  1459. data/lib/condenser/processors/node_modules/core-js-pure/features/instance/slice.js +3 -1
  1460. data/lib/condenser/processors/node_modules/core-js-pure/features/instance/some.js +3 -1
  1461. data/lib/condenser/processors/node_modules/core-js-pure/features/instance/sort.js +3 -1
  1462. data/lib/condenser/processors/node_modules/core-js-pure/features/instance/splice.js +3 -1
  1463. data/lib/condenser/processors/node_modules/core-js-pure/features/instance/starts-with.js +3 -1
  1464. data/lib/condenser/processors/node_modules/core-js-pure/features/instance/trim-end.js +3 -1
  1465. data/lib/condenser/processors/node_modules/core-js-pure/features/instance/trim-left.js +3 -1
  1466. data/lib/condenser/processors/node_modules/core-js-pure/features/instance/trim-right.js +3 -1
  1467. data/lib/condenser/processors/node_modules/core-js-pure/features/instance/trim-start.js +3 -1
  1468. data/lib/condenser/processors/node_modules/core-js-pure/features/instance/trim.js +3 -1
  1469. data/lib/condenser/processors/node_modules/core-js-pure/features/instance/values.js +3 -1
  1470. data/lib/condenser/processors/node_modules/core-js-pure/features/is-iterable.js +2 -1
  1471. data/lib/condenser/processors/node_modules/core-js-pure/features/iterator/as-indexed-pairs.js +10 -0
  1472. data/lib/condenser/processors/node_modules/core-js-pure/features/iterator/drop.js +9 -0
  1473. data/lib/condenser/processors/node_modules/core-js-pure/features/iterator/every.js +9 -0
  1474. data/lib/condenser/processors/node_modules/core-js-pure/features/iterator/filter.js +9 -0
  1475. data/lib/condenser/processors/node_modules/core-js-pure/features/iterator/find.js +9 -0
  1476. data/lib/condenser/processors/node_modules/core-js-pure/features/iterator/flat-map.js +9 -0
  1477. data/lib/condenser/processors/node_modules/core-js-pure/features/iterator/for-each.js +9 -0
  1478. data/lib/condenser/processors/node_modules/core-js-pure/features/iterator/from.js +9 -0
  1479. data/lib/condenser/processors/node_modules/core-js-pure/features/iterator/index.js +21 -0
  1480. data/lib/condenser/processors/node_modules/core-js-pure/features/iterator/map.js +9 -0
  1481. data/lib/condenser/processors/node_modules/core-js-pure/features/iterator/reduce.js +9 -0
  1482. data/lib/condenser/processors/node_modules/core-js-pure/features/iterator/some.js +9 -0
  1483. data/lib/condenser/processors/node_modules/core-js-pure/features/iterator/take.js +9 -0
  1484. data/lib/condenser/processors/node_modules/core-js-pure/features/iterator/to-array.js +9 -0
  1485. data/lib/condenser/processors/node_modules/core-js-pure/features/json/index.js +3 -1
  1486. data/lib/condenser/processors/node_modules/core-js-pure/features/json/stringify.js +3 -1
  1487. data/lib/condenser/processors/node_modules/core-js-pure/features/json/to-string-tag.js +3 -1
  1488. data/lib/condenser/processors/node_modules/core-js-pure/features/map/index.js +5 -2
  1489. data/lib/condenser/processors/node_modules/core-js-pure/features/map/update-or-insert.js +1 -0
  1490. data/lib/condenser/processors/node_modules/core-js-pure/features/map/upsert.js +5 -0
  1491. data/lib/condenser/processors/node_modules/core-js-pure/features/math/acosh.js +3 -1
  1492. data/lib/condenser/processors/node_modules/core-js-pure/features/math/asinh.js +3 -1
  1493. data/lib/condenser/processors/node_modules/core-js-pure/features/math/atanh.js +3 -1
  1494. data/lib/condenser/processors/node_modules/core-js-pure/features/math/cbrt.js +3 -1
  1495. data/lib/condenser/processors/node_modules/core-js-pure/features/math/clz32.js +3 -1
  1496. data/lib/condenser/processors/node_modules/core-js-pure/features/math/cosh.js +3 -1
  1497. data/lib/condenser/processors/node_modules/core-js-pure/features/math/expm1.js +3 -1
  1498. data/lib/condenser/processors/node_modules/core-js-pure/features/math/fround.js +3 -1
  1499. data/lib/condenser/processors/node_modules/core-js-pure/features/math/hypot.js +3 -1
  1500. data/lib/condenser/processors/node_modules/core-js-pure/features/math/imul.js +3 -1
  1501. data/lib/condenser/processors/node_modules/core-js-pure/features/math/index.js +7 -5
  1502. data/lib/condenser/processors/node_modules/core-js-pure/features/math/log10.js +3 -1
  1503. data/lib/condenser/processors/node_modules/core-js-pure/features/math/log1p.js +3 -1
  1504. data/lib/condenser/processors/node_modules/core-js-pure/features/math/log2.js +3 -1
  1505. data/lib/condenser/processors/node_modules/core-js-pure/features/math/sign.js +3 -1
  1506. data/lib/condenser/processors/node_modules/core-js-pure/features/math/sinh.js +3 -1
  1507. data/lib/condenser/processors/node_modules/core-js-pure/features/math/tanh.js +3 -1
  1508. data/lib/condenser/processors/node_modules/core-js-pure/features/math/to-string-tag.js +3 -1
  1509. data/lib/condenser/processors/node_modules/core-js-pure/features/math/trunc.js +3 -1
  1510. data/lib/condenser/processors/node_modules/core-js-pure/features/number/constructor.js +3 -1
  1511. data/lib/condenser/processors/node_modules/core-js-pure/features/number/epsilon.js +3 -1
  1512. data/lib/condenser/processors/node_modules/core-js-pure/features/number/index.js +3 -1
  1513. data/lib/condenser/processors/node_modules/core-js-pure/features/number/is-finite.js +3 -1
  1514. data/lib/condenser/processors/node_modules/core-js-pure/features/number/is-integer.js +3 -1
  1515. data/lib/condenser/processors/node_modules/core-js-pure/features/number/is-nan.js +3 -1
  1516. data/lib/condenser/processors/node_modules/core-js-pure/features/number/is-safe-integer.js +3 -1
  1517. data/lib/condenser/processors/node_modules/core-js-pure/features/number/max-safe-integer.js +3 -1
  1518. data/lib/condenser/processors/node_modules/core-js-pure/features/number/min-safe-integer.js +3 -1
  1519. data/lib/condenser/processors/node_modules/core-js-pure/features/number/parse-float.js +3 -1
  1520. data/lib/condenser/processors/node_modules/core-js-pure/features/number/parse-int.js +3 -1
  1521. data/lib/condenser/processors/node_modules/core-js-pure/features/number/to-fixed.js +3 -1
  1522. data/lib/condenser/processors/node_modules/core-js-pure/features/number/to-precision.js +3 -1
  1523. data/lib/condenser/processors/node_modules/core-js-pure/features/number/virtual/index.js +3 -1
  1524. data/lib/condenser/processors/node_modules/core-js-pure/features/number/virtual/to-fixed.js +3 -1
  1525. data/lib/condenser/processors/node_modules/core-js-pure/features/number/virtual/to-precision.js +3 -1
  1526. data/lib/condenser/processors/node_modules/core-js-pure/features/object/assign.js +3 -1
  1527. data/lib/condenser/processors/node_modules/core-js-pure/features/object/create.js +3 -1
  1528. data/lib/condenser/processors/node_modules/core-js-pure/features/object/define-getter.js +3 -1
  1529. data/lib/condenser/processors/node_modules/core-js-pure/features/object/define-properties.js +3 -1
  1530. data/lib/condenser/processors/node_modules/core-js-pure/features/object/define-property.js +3 -1
  1531. data/lib/condenser/processors/node_modules/core-js-pure/features/object/define-setter.js +3 -1
  1532. data/lib/condenser/processors/node_modules/core-js-pure/features/object/entries.js +3 -1
  1533. data/lib/condenser/processors/node_modules/core-js-pure/features/object/freeze.js +3 -1
  1534. data/lib/condenser/processors/node_modules/core-js-pure/features/object/from-entries.js +3 -1
  1535. data/lib/condenser/processors/node_modules/core-js-pure/features/object/get-own-property-descriptor.js +3 -1
  1536. data/lib/condenser/processors/node_modules/core-js-pure/features/object/get-own-property-descriptors.js +3 -1
  1537. data/lib/condenser/processors/node_modules/core-js-pure/features/object/get-own-property-names.js +3 -1
  1538. data/lib/condenser/processors/node_modules/core-js-pure/features/object/get-own-property-symbols.js +3 -1
  1539. data/lib/condenser/processors/node_modules/core-js-pure/features/object/get-prototype-of.js +3 -1
  1540. data/lib/condenser/processors/node_modules/core-js-pure/features/object/index.js +6 -1
  1541. data/lib/condenser/processors/node_modules/core-js-pure/features/object/is-extensible.js +3 -1
  1542. data/lib/condenser/processors/node_modules/core-js-pure/features/object/is-frozen.js +3 -1
  1543. data/lib/condenser/processors/node_modules/core-js-pure/features/object/is-sealed.js +3 -1
  1544. data/lib/condenser/processors/node_modules/core-js-pure/features/object/is.js +3 -1
  1545. data/lib/condenser/processors/node_modules/core-js-pure/features/object/iterate-entries.js +4 -0
  1546. data/lib/condenser/processors/node_modules/core-js-pure/features/object/iterate-keys.js +4 -0
  1547. data/lib/condenser/processors/node_modules/core-js-pure/features/object/iterate-values.js +4 -0
  1548. data/lib/condenser/processors/node_modules/core-js-pure/features/object/keys.js +3 -1
  1549. data/lib/condenser/processors/node_modules/core-js-pure/features/object/lookup-getter.js +3 -1
  1550. data/lib/condenser/processors/node_modules/core-js-pure/features/object/lookup-setter.js +3 -1
  1551. data/lib/condenser/processors/node_modules/core-js-pure/features/object/prevent-extensions.js +3 -1
  1552. data/lib/condenser/processors/node_modules/core-js-pure/features/object/seal.js +3 -1
  1553. data/lib/condenser/processors/node_modules/core-js-pure/features/object/set-prototype-of.js +3 -1
  1554. data/lib/condenser/processors/node_modules/core-js-pure/features/object/to-string.js +3 -1
  1555. data/lib/condenser/processors/node_modules/core-js-pure/features/object/values.js +3 -1
  1556. data/lib/condenser/processors/node_modules/core-js-pure/features/parse-float.js +3 -1
  1557. data/lib/condenser/processors/node_modules/core-js-pure/features/parse-int.js +3 -1
  1558. data/lib/condenser/processors/node_modules/core-js-pure/features/promise/all-settled.js +3 -1
  1559. data/lib/condenser/processors/node_modules/core-js-pure/features/promise/finally.js +3 -1
  1560. data/lib/condenser/processors/node_modules/core-js-pure/features/promise/index.js +3 -2
  1561. data/lib/condenser/processors/node_modules/core-js-pure/features/queue-microtask.js +3 -1
  1562. data/lib/condenser/processors/node_modules/core-js-pure/features/reflect/apply.js +3 -1
  1563. data/lib/condenser/processors/node_modules/core-js-pure/features/reflect/construct.js +3 -1
  1564. data/lib/condenser/processors/node_modules/core-js-pure/features/reflect/define-property.js +3 -1
  1565. data/lib/condenser/processors/node_modules/core-js-pure/features/reflect/delete-property.js +3 -1
  1566. data/lib/condenser/processors/node_modules/core-js-pure/features/reflect/get-own-property-descriptor.js +3 -1
  1567. data/lib/condenser/processors/node_modules/core-js-pure/features/reflect/get-prototype-of.js +3 -1
  1568. data/lib/condenser/processors/node_modules/core-js-pure/features/reflect/get.js +3 -1
  1569. data/lib/condenser/processors/node_modules/core-js-pure/features/reflect/has.js +3 -1
  1570. data/lib/condenser/processors/node_modules/core-js-pure/features/reflect/index.js +3 -2
  1571. data/lib/condenser/processors/node_modules/core-js-pure/features/reflect/is-extensible.js +3 -1
  1572. data/lib/condenser/processors/node_modules/core-js-pure/features/reflect/own-keys.js +3 -1
  1573. data/lib/condenser/processors/node_modules/core-js-pure/features/reflect/prevent-extensions.js +3 -1
  1574. data/lib/condenser/processors/node_modules/core-js-pure/features/reflect/set-prototype-of.js +3 -1
  1575. data/lib/condenser/processors/node_modules/core-js-pure/features/reflect/set.js +3 -1
  1576. data/lib/condenser/processors/node_modules/core-js-pure/features/regexp/constructor.js +3 -1
  1577. data/lib/condenser/processors/node_modules/core-js-pure/features/regexp/flags.js +3 -1
  1578. data/lib/condenser/processors/node_modules/core-js-pure/features/regexp/index.js +3 -1
  1579. data/lib/condenser/processors/node_modules/core-js-pure/features/regexp/match.js +3 -1
  1580. data/lib/condenser/processors/node_modules/core-js-pure/features/regexp/replace.js +3 -1
  1581. data/lib/condenser/processors/node_modules/core-js-pure/features/regexp/search.js +3 -1
  1582. data/lib/condenser/processors/node_modules/core-js-pure/features/regexp/split.js +3 -1
  1583. data/lib/condenser/processors/node_modules/core-js-pure/features/regexp/sticky.js +3 -0
  1584. data/lib/condenser/processors/node_modules/core-js-pure/features/regexp/test.js +3 -0
  1585. data/lib/condenser/processors/node_modules/core-js-pure/features/regexp/to-string.js +3 -1
  1586. data/lib/condenser/processors/node_modules/core-js-pure/features/set-immediate.js +3 -1
  1587. data/lib/condenser/processors/node_modules/core-js-pure/features/set-interval.js +3 -1
  1588. data/lib/condenser/processors/node_modules/core-js-pure/features/set-timeout.js +3 -1
  1589. data/lib/condenser/processors/node_modules/core-js-pure/features/set/index.js +3 -2
  1590. data/lib/condenser/processors/node_modules/core-js-pure/features/string/anchor.js +3 -1
  1591. data/lib/condenser/processors/node_modules/core-js-pure/features/string/big.js +3 -1
  1592. data/lib/condenser/processors/node_modules/core-js-pure/features/string/blink.js +3 -1
  1593. data/lib/condenser/processors/node_modules/core-js-pure/features/string/bold.js +3 -1
  1594. data/lib/condenser/processors/node_modules/core-js-pure/features/string/code-point-at.js +3 -1
  1595. data/lib/condenser/processors/node_modules/core-js-pure/features/string/ends-with.js +3 -1
  1596. data/lib/condenser/processors/node_modules/core-js-pure/features/string/fixed.js +3 -1
  1597. data/lib/condenser/processors/node_modules/core-js-pure/features/string/fontcolor.js +3 -1
  1598. data/lib/condenser/processors/node_modules/core-js-pure/features/string/fontsize.js +3 -1
  1599. data/lib/condenser/processors/node_modules/core-js-pure/features/string/from-code-point.js +3 -1
  1600. data/lib/condenser/processors/node_modules/core-js-pure/features/string/includes.js +3 -1
  1601. data/lib/condenser/processors/node_modules/core-js-pure/features/string/index.js +4 -2
  1602. data/lib/condenser/processors/node_modules/core-js-pure/features/string/italics.js +3 -1
  1603. data/lib/condenser/processors/node_modules/core-js-pure/features/string/iterator.js +3 -1
  1604. data/lib/condenser/processors/node_modules/core-js-pure/features/string/link.js +3 -1
  1605. data/lib/condenser/processors/node_modules/core-js-pure/features/string/match-all.js +3 -1
  1606. data/lib/condenser/processors/node_modules/core-js-pure/features/string/match.js +3 -1
  1607. data/lib/condenser/processors/node_modules/core-js-pure/features/string/pad-end.js +3 -1
  1608. data/lib/condenser/processors/node_modules/core-js-pure/features/string/pad-start.js +3 -1
  1609. data/lib/condenser/processors/node_modules/core-js-pure/features/string/raw.js +3 -1
  1610. data/lib/condenser/processors/node_modules/core-js-pure/features/string/repeat.js +3 -1
  1611. data/lib/condenser/processors/node_modules/core-js-pure/features/string/replace.js +3 -1
  1612. data/lib/condenser/processors/node_modules/core-js-pure/features/string/search.js +3 -1
  1613. data/lib/condenser/processors/node_modules/core-js-pure/features/string/small.js +3 -1
  1614. data/lib/condenser/processors/node_modules/core-js-pure/features/string/split.js +3 -1
  1615. data/lib/condenser/processors/node_modules/core-js-pure/features/string/starts-with.js +3 -1
  1616. data/lib/condenser/processors/node_modules/core-js-pure/features/string/strike.js +3 -1
  1617. data/lib/condenser/processors/node_modules/core-js-pure/features/string/sub.js +3 -1
  1618. data/lib/condenser/processors/node_modules/core-js-pure/features/string/sup.js +3 -1
  1619. data/lib/condenser/processors/node_modules/core-js-pure/features/string/trim-end.js +3 -1
  1620. data/lib/condenser/processors/node_modules/core-js-pure/features/string/trim-left.js +3 -1
  1621. data/lib/condenser/processors/node_modules/core-js-pure/features/string/trim-right.js +3 -1
  1622. data/lib/condenser/processors/node_modules/core-js-pure/features/string/trim-start.js +3 -1
  1623. data/lib/condenser/processors/node_modules/core-js-pure/features/string/trim.js +3 -1
  1624. data/lib/condenser/processors/node_modules/core-js-pure/features/string/virtual/anchor.js +3 -1
  1625. data/lib/condenser/processors/node_modules/core-js-pure/features/string/virtual/big.js +3 -1
  1626. data/lib/condenser/processors/node_modules/core-js-pure/features/string/virtual/blink.js +3 -1
  1627. data/lib/condenser/processors/node_modules/core-js-pure/features/string/virtual/bold.js +3 -1
  1628. data/lib/condenser/processors/node_modules/core-js-pure/features/string/virtual/code-point-at.js +3 -1
  1629. data/lib/condenser/processors/node_modules/core-js-pure/features/string/virtual/ends-with.js +3 -1
  1630. data/lib/condenser/processors/node_modules/core-js-pure/features/string/virtual/fixed.js +3 -1
  1631. data/lib/condenser/processors/node_modules/core-js-pure/features/string/virtual/fontcolor.js +3 -1
  1632. data/lib/condenser/processors/node_modules/core-js-pure/features/string/virtual/fontsize.js +3 -1
  1633. data/lib/condenser/processors/node_modules/core-js-pure/features/string/virtual/includes.js +3 -1
  1634. data/lib/condenser/processors/node_modules/core-js-pure/features/string/virtual/index.js +4 -2
  1635. data/lib/condenser/processors/node_modules/core-js-pure/features/string/virtual/italics.js +3 -1
  1636. data/lib/condenser/processors/node_modules/core-js-pure/features/string/virtual/iterator.js +3 -1
  1637. data/lib/condenser/processors/node_modules/core-js-pure/features/string/virtual/link.js +3 -1
  1638. data/lib/condenser/processors/node_modules/core-js-pure/features/string/virtual/match-all.js +3 -1
  1639. data/lib/condenser/processors/node_modules/core-js-pure/features/string/virtual/pad-end.js +3 -1
  1640. data/lib/condenser/processors/node_modules/core-js-pure/features/string/virtual/pad-start.js +3 -1
  1641. data/lib/condenser/processors/node_modules/core-js-pure/features/string/virtual/repeat.js +3 -1
  1642. data/lib/condenser/processors/node_modules/core-js-pure/features/string/virtual/small.js +3 -1
  1643. data/lib/condenser/processors/node_modules/core-js-pure/features/string/virtual/starts-with.js +3 -1
  1644. data/lib/condenser/processors/node_modules/core-js-pure/features/string/virtual/strike.js +3 -1
  1645. data/lib/condenser/processors/node_modules/core-js-pure/features/string/virtual/sub.js +3 -1
  1646. data/lib/condenser/processors/node_modules/core-js-pure/features/string/virtual/sup.js +3 -1
  1647. data/lib/condenser/processors/node_modules/core-js-pure/features/string/virtual/trim-end.js +3 -1
  1648. data/lib/condenser/processors/node_modules/core-js-pure/features/string/virtual/trim-left.js +3 -1
  1649. data/lib/condenser/processors/node_modules/core-js-pure/features/string/virtual/trim-right.js +3 -1
  1650. data/lib/condenser/processors/node_modules/core-js-pure/features/string/virtual/trim-start.js +3 -1
  1651. data/lib/condenser/processors/node_modules/core-js-pure/features/string/virtual/trim.js +3 -1
  1652. data/lib/condenser/processors/node_modules/core-js-pure/features/symbol/async-dispose.js +1 -1
  1653. data/lib/condenser/processors/node_modules/core-js-pure/features/symbol/async-iterator.js +3 -1
  1654. data/lib/condenser/processors/node_modules/core-js-pure/features/symbol/dispose.js +1 -1
  1655. data/lib/condenser/processors/node_modules/core-js-pure/features/symbol/for.js +3 -1
  1656. data/lib/condenser/processors/node_modules/core-js-pure/features/symbol/has-instance.js +3 -1
  1657. data/lib/condenser/processors/node_modules/core-js-pure/features/symbol/index.js +4 -2
  1658. data/lib/condenser/processors/node_modules/core-js-pure/features/symbol/is-concat-spreadable.js +3 -1
  1659. data/lib/condenser/processors/node_modules/core-js-pure/features/symbol/iterator.js +3 -1
  1660. data/lib/condenser/processors/node_modules/core-js-pure/features/symbol/key-for.js +3 -1
  1661. data/lib/condenser/processors/node_modules/core-js-pure/features/symbol/match-all.js +3 -1
  1662. data/lib/condenser/processors/node_modules/core-js-pure/features/symbol/match.js +3 -1
  1663. data/lib/condenser/processors/node_modules/core-js-pure/features/symbol/observable.js +1 -1
  1664. data/lib/condenser/processors/node_modules/core-js-pure/features/symbol/pattern-match.js +1 -1
  1665. data/lib/condenser/processors/node_modules/core-js-pure/features/symbol/replace-all.js +2 -1
  1666. data/lib/condenser/processors/node_modules/core-js-pure/features/symbol/replace.js +3 -1
  1667. data/lib/condenser/processors/node_modules/core-js-pure/features/symbol/search.js +3 -1
  1668. data/lib/condenser/processors/node_modules/core-js-pure/features/symbol/species.js +3 -1
  1669. data/lib/condenser/processors/node_modules/core-js-pure/features/symbol/split.js +3 -1
  1670. data/lib/condenser/processors/node_modules/core-js-pure/features/symbol/to-primitive.js +3 -1
  1671. data/lib/condenser/processors/node_modules/core-js-pure/features/symbol/to-string-tag.js +3 -1
  1672. data/lib/condenser/processors/node_modules/core-js-pure/features/symbol/unscopables.js +3 -1
  1673. data/lib/condenser/processors/node_modules/core-js-pure/features/typed-array/float32-array.js +3 -1
  1674. data/lib/condenser/processors/node_modules/core-js-pure/features/typed-array/float64-array.js +3 -1
  1675. data/lib/condenser/processors/node_modules/core-js-pure/features/typed-array/index.js +3 -1
  1676. data/lib/condenser/processors/node_modules/core-js-pure/features/typed-array/int16-array.js +3 -1
  1677. data/lib/condenser/processors/node_modules/core-js-pure/features/typed-array/int32-array.js +3 -1
  1678. data/lib/condenser/processors/node_modules/core-js-pure/features/typed-array/int8-array.js +3 -1
  1679. data/lib/condenser/processors/node_modules/core-js-pure/features/typed-array/uint16-array.js +3 -1
  1680. data/lib/condenser/processors/node_modules/core-js-pure/features/typed-array/uint32-array.js +3 -1
  1681. data/lib/condenser/processors/node_modules/core-js-pure/features/typed-array/uint8-array.js +3 -1
  1682. data/lib/condenser/processors/node_modules/core-js-pure/features/typed-array/uint8-clamped-array.js +3 -1
  1683. data/lib/condenser/processors/node_modules/core-js-pure/features/url-search-params/index.js +3 -1
  1684. data/lib/condenser/processors/node_modules/core-js-pure/features/url/index.js +3 -1
  1685. data/lib/condenser/processors/node_modules/core-js-pure/features/url/to-json.js +3 -1
  1686. data/lib/condenser/processors/node_modules/core-js-pure/features/weak-map/index.js +4 -2
  1687. data/lib/condenser/processors/node_modules/core-js-pure/features/weak-map/upsert.js +5 -0
  1688. data/lib/condenser/processors/node_modules/core-js-pure/features/weak-set/index.js +3 -2
  1689. data/lib/condenser/processors/node_modules/core-js-pure/index.js +2 -1
  1690. data/lib/condenser/processors/node_modules/core-js-pure/internals/array-buffer-native.js +1 -0
  1691. data/lib/condenser/processors/node_modules/core-js-pure/internals/array-for-each.js +6 -2
  1692. data/lib/condenser/processors/node_modules/core-js-pure/internals/array-from.js +9 -9
  1693. data/lib/condenser/processors/node_modules/core-js-pure/internals/array-iteration.js +1 -1
  1694. data/lib/condenser/processors/node_modules/core-js-pure/internals/array-last-index-of.js +6 -3
  1695. data/lib/condenser/processors/node_modules/core-js-pure/internals/array-method-has-species-support.js +5 -1
  1696. data/lib/condenser/processors/node_modules/core-js-pure/internals/{sloppy-array-method.js → array-method-is-strict.js} +1 -1
  1697. data/lib/condenser/processors/node_modules/core-js-pure/internals/array-method-uses-to-length.js +30 -0
  1698. data/lib/condenser/processors/node_modules/core-js-pure/internals/async-iterator-create-proxy.js +61 -0
  1699. data/lib/condenser/processors/node_modules/core-js-pure/internals/async-iterator-iteration.js +61 -0
  1700. data/lib/condenser/processors/node_modules/core-js-pure/internals/async-iterator-prototype.js +37 -0
  1701. data/lib/condenser/processors/node_modules/core-js-pure/internals/classof.js +2 -1
  1702. data/lib/condenser/processors/node_modules/core-js-pure/internals/collection-from.js +1 -1
  1703. data/lib/condenser/processors/node_modules/core-js-pure/internals/collection-strong.js +1 -1
  1704. data/lib/condenser/processors/node_modules/core-js-pure/internals/collection.js +14 -9
  1705. data/lib/condenser/processors/node_modules/core-js-pure/internals/{hide.js → create-non-enumerable-property.js} +0 -0
  1706. data/lib/condenser/processors/node_modules/core-js-pure/internals/define-iterator.js +3 -3
  1707. data/lib/condenser/processors/node_modules/core-js-pure/internals/define-well-known-symbol.js +1 -1
  1708. data/lib/condenser/processors/node_modules/core-js-pure/internals/descriptors.js +1 -1
  1709. data/lib/condenser/processors/node_modules/core-js-pure/internals/engine-is-ios.js +3 -0
  1710. data/lib/condenser/processors/node_modules/core-js-pure/internals/{user-agent.js → engine-user-agent.js} +0 -0
  1711. data/lib/condenser/processors/node_modules/core-js-pure/internals/engine-v8-version.js +20 -0
  1712. data/lib/condenser/processors/node_modules/core-js-pure/internals/entry-unbind.js +3 -1
  1713. data/lib/condenser/processors/node_modules/core-js-pure/internals/export.js +9 -5
  1714. data/lib/condenser/processors/node_modules/core-js-pure/internals/flatten-into-array.js +1 -1
  1715. data/lib/condenser/processors/node_modules/core-js-pure/internals/{bind-context.js → function-bind-context.js} +0 -0
  1716. data/lib/condenser/processors/node_modules/core-js-pure/internals/get-async-iterator-method.js +9 -0
  1717. data/lib/condenser/processors/node_modules/core-js-pure/internals/global.js +4 -5
  1718. data/lib/condenser/processors/node_modules/core-js-pure/internals/ieee754.js +88 -0
  1719. data/lib/condenser/processors/node_modules/core-js-pure/internals/inspect-source.js +12 -0
  1720. data/lib/condenser/processors/node_modules/core-js-pure/internals/internal-state.js +2 -2
  1721. data/lib/condenser/processors/node_modules/core-js-pure/internals/iterate.js +5 -4
  1722. data/lib/condenser/processors/node_modules/core-js-pure/internals/iterator-create-proxy.js +51 -0
  1723. data/lib/condenser/processors/node_modules/core-js-pure/internals/iterators-core.js +4 -2
  1724. data/lib/condenser/processors/node_modules/core-js-pure/internals/map-upsert.js +23 -0
  1725. data/lib/condenser/processors/node_modules/core-js-pure/internals/microtask.js +3 -3
  1726. data/lib/condenser/processors/node_modules/core-js-pure/internals/native-url.js +13 -4
  1727. data/lib/condenser/processors/node_modules/core-js-pure/internals/native-weak-map.js +2 -2
  1728. data/lib/condenser/processors/node_modules/core-js-pure/internals/{parse-float.js → number-parse-float.js} +4 -4
  1729. data/lib/condenser/processors/node_modules/core-js-pure/internals/{parse-int.js → number-parse-int.js} +4 -4
  1730. data/lib/condenser/processors/node_modules/core-js-pure/internals/object-assign.js +12 -1
  1731. data/lib/condenser/processors/node_modules/core-js-pure/internals/object-create.js +48 -19
  1732. data/lib/condenser/processors/node_modules/core-js-pure/internals/object-iterator.js +37 -0
  1733. data/lib/condenser/processors/node_modules/core-js-pure/internals/{forced-object-prototype-accessors-methods.js → object-prototype-accessors-forced.js} +0 -0
  1734. data/lib/condenser/processors/node_modules/core-js-pure/internals/object-to-string.js +3 -8
  1735. data/lib/condenser/processors/node_modules/core-js-pure/internals/redefine.js +2 -2
  1736. data/lib/condenser/processors/node_modules/core-js-pure/internals/regexp-sticky-helpers.js +1 -0
  1737. data/lib/condenser/processors/node_modules/core-js-pure/internals/set-global.js +2 -2
  1738. data/lib/condenser/processors/node_modules/core-js-pure/internals/set-to-string-tag.js +5 -3
  1739. data/lib/condenser/processors/node_modules/core-js-pure/internals/shared-store.js +7 -0
  1740. data/lib/condenser/processors/node_modules/core-js-pure/internals/shared.js +3 -7
  1741. data/lib/condenser/processors/node_modules/core-js-pure/internals/{forced-string-html-method.js → string-html-forced.js} +0 -0
  1742. data/lib/condenser/processors/node_modules/core-js-pure/internals/{webkit-string-pad-bug.js → string-pad-webkit-bug.js} +1 -1
  1743. data/lib/condenser/processors/node_modules/core-js-pure/internals/{punycode-to-ascii.js → string-punycode-to-ascii.js} +0 -0
  1744. data/lib/condenser/processors/node_modules/core-js-pure/internals/{forced-string-trim-method.js → string-trim-forced.js} +0 -0
  1745. data/lib/condenser/processors/node_modules/core-js-pure/internals/task.js +4 -2
  1746. data/lib/condenser/processors/node_modules/core-js-pure/internals/to-absolute-index.js +1 -1
  1747. data/lib/condenser/processors/node_modules/core-js-pure/internals/to-positive-integer.js +7 -0
  1748. data/lib/condenser/processors/node_modules/core-js-pure/internals/to-string-tag-support.js +8 -0
  1749. data/lib/condenser/processors/node_modules/core-js-pure/internals/{typed-arrays-constructors-requires-wrappers.js → typed-array-constructors-require-wrappers.js} +1 -1
  1750. data/lib/condenser/processors/node_modules/core-js-pure/internals/use-symbol-as-uid.js +7 -0
  1751. data/lib/condenser/processors/node_modules/core-js-pure/internals/well-known-symbol-wrapped.js +3 -0
  1752. data/lib/condenser/processors/node_modules/core-js-pure/internals/well-known-symbol.js +8 -3
  1753. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.array.concat.js +5 -1
  1754. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.array.every.js +6 -2
  1755. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.array.filter.js +6 -1
  1756. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.array.find-index.js +4 -1
  1757. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.array.find.js +4 -1
  1758. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.array.includes.js +4 -1
  1759. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.array.index-of.js +5 -3
  1760. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.array.join.js +3 -3
  1761. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.array.map.js +6 -1
  1762. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.array.reduce-right.js +6 -2
  1763. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.array.reduce.js +6 -2
  1764. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.array.reverse.js +1 -0
  1765. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.array.slice.js +6 -2
  1766. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.array.some.js +6 -2
  1767. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.array.sort.js +5 -5
  1768. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.array.splice.js +5 -1
  1769. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.global-this.js +8 -0
  1770. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.json.stringify.js +32 -0
  1771. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.map.js +3 -3
  1772. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.number.parse-float.js +1 -1
  1773. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.number.parse-int.js +1 -1
  1774. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.object.define-getter.js +1 -1
  1775. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.object.define-setter.js +1 -1
  1776. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.object.lookup-getter.js +1 -1
  1777. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.object.lookup-setter.js +1 -1
  1778. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.parse-float.js +1 -1
  1779. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.parse-int.js +1 -1
  1780. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.promise.finally.js +7 -1
  1781. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.promise.js +29 -21
  1782. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.reflect.set.js +10 -1
  1783. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.regexp.sticky.js +1 -0
  1784. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.regexp.test.js +1 -0
  1785. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.set.js +2 -2
  1786. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.string.anchor.js +1 -1
  1787. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.string.big.js +1 -1
  1788. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.string.blink.js +1 -1
  1789. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.string.bold.js +1 -1
  1790. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.string.ends-with.js +10 -1
  1791. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.string.fixed.js +1 -1
  1792. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.string.fontcolor.js +1 -1
  1793. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.string.fontsize.js +1 -1
  1794. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.string.italics.js +1 -1
  1795. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.string.link.js +1 -1
  1796. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.string.match-all.js +23 -8
  1797. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.string.pad-end.js +1 -1
  1798. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.string.pad-start.js +1 -1
  1799. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.string.small.js +1 -1
  1800. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.string.starts-with.js +10 -1
  1801. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.string.strike.js +1 -1
  1802. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.string.sub.js +1 -1
  1803. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.string.sup.js +1 -1
  1804. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.string.trim-end.js +1 -1
  1805. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.string.trim-start.js +1 -1
  1806. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.string.trim.js +1 -1
  1807. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.symbol.js +46 -34
  1808. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.weak-map.js +3 -3
  1809. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.weak-set.js +3 -3
  1810. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.aggregate-error.js +19 -3
  1811. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.async-iterator.as-indexed-pairs.js +27 -0
  1812. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.async-iterator.constructor.js +29 -0
  1813. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.async-iterator.drop.js +41 -0
  1814. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.async-iterator.every.js +10 -0
  1815. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.async-iterator.filter.js +42 -0
  1816. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.async-iterator.find.js +10 -0
  1817. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.async-iterator.flat-map.js +67 -0
  1818. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.async-iterator.for-each.js +10 -0
  1819. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.async-iterator.from.js +30 -0
  1820. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.async-iterator.map.js +30 -0
  1821. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.async-iterator.reduce.js +46 -0
  1822. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.async-iterator.some.js +10 -0
  1823. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.async-iterator.take.js +22 -0
  1824. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.async-iterator.to-array.js +10 -0
  1825. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.global-this.js +2 -8
  1826. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.iterator.as-indexed-pairs.js +20 -0
  1827. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.iterator.constructor.js +48 -0
  1828. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.iterator.drop.js +30 -0
  1829. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.iterator.every.js +16 -0
  1830. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.iterator.filter.js +30 -0
  1831. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.iterator.find.js +16 -0
  1832. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.iterator.flat-map.js +46 -0
  1833. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.iterator.for-each.js +11 -0
  1834. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.iterator.from.js +32 -0
  1835. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.iterator.map.js +23 -0
  1836. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.iterator.reduce.js +25 -0
  1837. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.iterator.some.js +16 -0
  1838. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.iterator.take.js +25 -0
  1839. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.iterator.to-array.js +15 -0
  1840. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.map.every.js +1 -1
  1841. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.map.filter.js +1 -1
  1842. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.map.find-key.js +1 -1
  1843. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.map.find.js +1 -1
  1844. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.map.map-keys.js +1 -1
  1845. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.map.map-values.js +1 -1
  1846. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.map.reduce.js +9 -8
  1847. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.map.some.js +1 -1
  1848. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.map.update-or-insert.js +5 -12
  1849. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.map.upsert.js +10 -0
  1850. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.math.iaddh.js +1 -0
  1851. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.math.imulh.js +1 -0
  1852. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.math.isubh.js +1 -0
  1853. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.math.signbit.js +1 -2
  1854. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.math.umulh.js +1 -0
  1855. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.number.from-string.js +1 -1
  1856. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.object.iterate-entries.js +11 -0
  1857. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.object.iterate-keys.js +11 -0
  1858. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.object.iterate-values.js +11 -0
  1859. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.observable.js +2 -2
  1860. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.set.every.js +1 -1
  1861. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.set.filter.js +1 -1
  1862. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.set.find.js +1 -1
  1863. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.set.map.js +1 -1
  1864. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.set.reduce.js +9 -8
  1865. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.set.some.js +1 -1
  1866. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.string.match-all.js +0 -1
  1867. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.string.replace-all.js +17 -20
  1868. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.symbol.replace-all.js +1 -2
  1869. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.weak-map.upsert.js +10 -0
  1870. data/lib/condenser/processors/node_modules/core-js-pure/modules/web.dom-collections.iterator.js +4 -3
  1871. data/lib/condenser/processors/node_modules/core-js-pure/modules/web.immediate.js +2 -1
  1872. data/lib/condenser/processors/node_modules/core-js-pure/modules/web.timers.js +1 -1
  1873. data/lib/condenser/processors/node_modules/core-js-pure/modules/web.url-search-params.js +42 -6
  1874. data/lib/condenser/processors/node_modules/core-js-pure/modules/web.url.js +1 -2
  1875. data/lib/condenser/processors/node_modules/core-js-pure/package.json +12 -6
  1876. data/lib/condenser/processors/node_modules/core-js-pure/postinstall.js +56 -0
  1877. data/lib/condenser/processors/node_modules/core-js-pure/proposals/global-this.js +2 -1
  1878. data/lib/condenser/processors/node_modules/core-js-pure/proposals/iterator-helpers.js +28 -0
  1879. data/lib/condenser/processors/node_modules/core-js-pure/proposals/map-update-or-insert.js +2 -1
  1880. data/lib/condenser/processors/node_modules/core-js-pure/proposals/map-upsert.js +5 -0
  1881. data/lib/condenser/processors/node_modules/core-js-pure/proposals/object-iteration.js +3 -0
  1882. data/lib/condenser/processors/node_modules/core-js-pure/stable/array-buffer/constructor.js +3 -1
  1883. data/lib/condenser/processors/node_modules/core-js-pure/stable/array-buffer/index.js +3 -1
  1884. data/lib/condenser/processors/node_modules/core-js-pure/stable/array-buffer/is-view.js +3 -1
  1885. data/lib/condenser/processors/node_modules/core-js-pure/stable/array-buffer/slice.js +3 -1
  1886. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/concat.js +3 -1
  1887. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/copy-within.js +3 -1
  1888. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/entries.js +3 -1
  1889. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/every.js +3 -1
  1890. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/fill.js +3 -1
  1891. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/filter.js +3 -1
  1892. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/find-index.js +3 -1
  1893. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/find.js +3 -1
  1894. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/flat-map.js +3 -1
  1895. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/flat.js +3 -1
  1896. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/for-each.js +3 -1
  1897. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/from.js +3 -1
  1898. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/includes.js +3 -1
  1899. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/index-of.js +3 -1
  1900. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/index.js +3 -1
  1901. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/is-array.js +3 -1
  1902. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/iterator.js +3 -1
  1903. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/join.js +3 -1
  1904. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/keys.js +3 -1
  1905. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/last-index-of.js +3 -1
  1906. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/map.js +3 -1
  1907. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/of.js +3 -1
  1908. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/reduce-right.js +3 -1
  1909. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/reduce.js +3 -1
  1910. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/reverse.js +3 -1
  1911. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/slice.js +3 -1
  1912. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/some.js +3 -1
  1913. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/sort.js +3 -1
  1914. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/splice.js +3 -1
  1915. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/values.js +3 -1
  1916. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/virtual/concat.js +3 -1
  1917. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/virtual/copy-within.js +3 -1
  1918. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/virtual/entries.js +3 -1
  1919. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/virtual/every.js +3 -1
  1920. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/virtual/fill.js +3 -1
  1921. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/virtual/filter.js +3 -1
  1922. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/virtual/find-index.js +3 -1
  1923. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/virtual/find.js +3 -1
  1924. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/virtual/flat-map.js +3 -1
  1925. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/virtual/flat.js +3 -1
  1926. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/virtual/for-each.js +3 -1
  1927. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/virtual/includes.js +3 -1
  1928. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/virtual/index-of.js +3 -1
  1929. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/virtual/index.js +3 -1
  1930. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/virtual/iterator.js +3 -1
  1931. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/virtual/join.js +3 -1
  1932. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/virtual/keys.js +3 -1
  1933. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/virtual/last-index-of.js +3 -1
  1934. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/virtual/map.js +3 -1
  1935. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/virtual/reduce-right.js +3 -1
  1936. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/virtual/reduce.js +3 -1
  1937. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/virtual/reverse.js +3 -1
  1938. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/virtual/slice.js +3 -1
  1939. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/virtual/some.js +3 -1
  1940. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/virtual/sort.js +3 -1
  1941. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/virtual/splice.js +3 -1
  1942. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/virtual/values.js +3 -1
  1943. data/lib/condenser/processors/node_modules/core-js-pure/stable/clear-immediate.js +2 -1
  1944. data/lib/condenser/processors/node_modules/core-js-pure/stable/data-view/index.js +3 -1
  1945. data/lib/condenser/processors/node_modules/core-js-pure/stable/date/index.js +3 -1
  1946. data/lib/condenser/processors/node_modules/core-js-pure/stable/date/now.js +3 -1
  1947. data/lib/condenser/processors/node_modules/core-js-pure/stable/date/to-iso-string.js +3 -1
  1948. data/lib/condenser/processors/node_modules/core-js-pure/stable/date/to-json.js +3 -1
  1949. data/lib/condenser/processors/node_modules/core-js-pure/stable/date/to-primitive.js +3 -1
  1950. data/lib/condenser/processors/node_modules/core-js-pure/stable/date/to-string.js +3 -1
  1951. data/lib/condenser/processors/node_modules/core-js-pure/stable/dom-collections/for-each.js +3 -1
  1952. data/lib/condenser/processors/node_modules/core-js-pure/stable/function/bind.js +3 -1
  1953. data/lib/condenser/processors/node_modules/core-js-pure/stable/function/has-instance.js +3 -1
  1954. data/lib/condenser/processors/node_modules/core-js-pure/stable/function/index.js +3 -1
  1955. data/lib/condenser/processors/node_modules/core-js-pure/stable/function/name.js +3 -1
  1956. data/lib/condenser/processors/node_modules/core-js-pure/stable/function/virtual/bind.js +3 -1
  1957. data/lib/condenser/processors/node_modules/core-js-pure/stable/function/virtual/index.js +3 -1
  1958. data/lib/condenser/processors/node_modules/core-js-pure/stable/global-this.js +2 -2
  1959. data/lib/condenser/processors/node_modules/core-js-pure/stable/index.js +2 -1
  1960. data/lib/condenser/processors/node_modules/core-js-pure/stable/instance/bind.js +3 -1
  1961. data/lib/condenser/processors/node_modules/core-js-pure/stable/instance/code-point-at.js +3 -1
  1962. data/lib/condenser/processors/node_modules/core-js-pure/stable/instance/concat.js +3 -1
  1963. data/lib/condenser/processors/node_modules/core-js-pure/stable/instance/copy-within.js +3 -1
  1964. data/lib/condenser/processors/node_modules/core-js-pure/stable/instance/ends-with.js +3 -1
  1965. data/lib/condenser/processors/node_modules/core-js-pure/stable/instance/every.js +3 -1
  1966. data/lib/condenser/processors/node_modules/core-js-pure/stable/instance/fill.js +3 -1
  1967. data/lib/condenser/processors/node_modules/core-js-pure/stable/instance/filter.js +3 -1
  1968. data/lib/condenser/processors/node_modules/core-js-pure/stable/instance/find-index.js +3 -1
  1969. data/lib/condenser/processors/node_modules/core-js-pure/stable/instance/find.js +3 -1
  1970. data/lib/condenser/processors/node_modules/core-js-pure/stable/instance/flags.js +3 -1
  1971. data/lib/condenser/processors/node_modules/core-js-pure/stable/instance/flat-map.js +3 -1
  1972. data/lib/condenser/processors/node_modules/core-js-pure/stable/instance/flat.js +3 -1
  1973. data/lib/condenser/processors/node_modules/core-js-pure/stable/instance/includes.js +3 -1
  1974. data/lib/condenser/processors/node_modules/core-js-pure/stable/instance/index-of.js +3 -1
  1975. data/lib/condenser/processors/node_modules/core-js-pure/stable/instance/last-index-of.js +3 -1
  1976. data/lib/condenser/processors/node_modules/core-js-pure/stable/instance/map.js +3 -1
  1977. data/lib/condenser/processors/node_modules/core-js-pure/stable/instance/match-all.js +3 -1
  1978. data/lib/condenser/processors/node_modules/core-js-pure/stable/instance/pad-end.js +3 -1
  1979. data/lib/condenser/processors/node_modules/core-js-pure/stable/instance/pad-start.js +3 -1
  1980. data/lib/condenser/processors/node_modules/core-js-pure/stable/instance/reduce-right.js +3 -1
  1981. data/lib/condenser/processors/node_modules/core-js-pure/stable/instance/reduce.js +3 -1
  1982. data/lib/condenser/processors/node_modules/core-js-pure/stable/instance/repeat.js +3 -1
  1983. data/lib/condenser/processors/node_modules/core-js-pure/stable/instance/reverse.js +3 -1
  1984. data/lib/condenser/processors/node_modules/core-js-pure/stable/instance/slice.js +3 -1
  1985. data/lib/condenser/processors/node_modules/core-js-pure/stable/instance/some.js +3 -1
  1986. data/lib/condenser/processors/node_modules/core-js-pure/stable/instance/sort.js +3 -1
  1987. data/lib/condenser/processors/node_modules/core-js-pure/stable/instance/splice.js +3 -1
  1988. data/lib/condenser/processors/node_modules/core-js-pure/stable/instance/starts-with.js +3 -1
  1989. data/lib/condenser/processors/node_modules/core-js-pure/stable/instance/trim-end.js +3 -1
  1990. data/lib/condenser/processors/node_modules/core-js-pure/stable/instance/trim-left.js +3 -1
  1991. data/lib/condenser/processors/node_modules/core-js-pure/stable/instance/trim-right.js +3 -1
  1992. data/lib/condenser/processors/node_modules/core-js-pure/stable/instance/trim-start.js +3 -1
  1993. data/lib/condenser/processors/node_modules/core-js-pure/stable/instance/trim.js +3 -1
  1994. data/lib/condenser/processors/node_modules/core-js-pure/stable/json/index.js +3 -1
  1995. data/lib/condenser/processors/node_modules/core-js-pure/stable/json/stringify.js +3 -1
  1996. data/lib/condenser/processors/node_modules/core-js-pure/stable/json/to-string-tag.js +3 -1
  1997. data/lib/condenser/processors/node_modules/core-js-pure/stable/map/index.js +3 -1
  1998. data/lib/condenser/processors/node_modules/core-js-pure/stable/math/acosh.js +3 -1
  1999. data/lib/condenser/processors/node_modules/core-js-pure/stable/math/asinh.js +3 -1
  2000. data/lib/condenser/processors/node_modules/core-js-pure/stable/math/atanh.js +3 -1
  2001. data/lib/condenser/processors/node_modules/core-js-pure/stable/math/cbrt.js +3 -1
  2002. data/lib/condenser/processors/node_modules/core-js-pure/stable/math/clz32.js +3 -1
  2003. data/lib/condenser/processors/node_modules/core-js-pure/stable/math/cosh.js +3 -1
  2004. data/lib/condenser/processors/node_modules/core-js-pure/stable/math/expm1.js +3 -1
  2005. data/lib/condenser/processors/node_modules/core-js-pure/stable/math/fround.js +3 -1
  2006. data/lib/condenser/processors/node_modules/core-js-pure/stable/math/hypot.js +3 -1
  2007. data/lib/condenser/processors/node_modules/core-js-pure/stable/math/imul.js +3 -1
  2008. data/lib/condenser/processors/node_modules/core-js-pure/stable/math/index.js +3 -1
  2009. data/lib/condenser/processors/node_modules/core-js-pure/stable/math/log10.js +3 -1
  2010. data/lib/condenser/processors/node_modules/core-js-pure/stable/math/log1p.js +3 -1
  2011. data/lib/condenser/processors/node_modules/core-js-pure/stable/math/log2.js +3 -1
  2012. data/lib/condenser/processors/node_modules/core-js-pure/stable/math/sign.js +3 -1
  2013. data/lib/condenser/processors/node_modules/core-js-pure/stable/math/sinh.js +3 -1
  2014. data/lib/condenser/processors/node_modules/core-js-pure/stable/math/tanh.js +3 -1
  2015. data/lib/condenser/processors/node_modules/core-js-pure/stable/math/to-string-tag.js +3 -1
  2016. data/lib/condenser/processors/node_modules/core-js-pure/stable/math/trunc.js +3 -1
  2017. data/lib/condenser/processors/node_modules/core-js-pure/stable/number/constructor.js +3 -1
  2018. data/lib/condenser/processors/node_modules/core-js-pure/stable/number/epsilon.js +3 -1
  2019. data/lib/condenser/processors/node_modules/core-js-pure/stable/number/index.js +3 -1
  2020. data/lib/condenser/processors/node_modules/core-js-pure/stable/number/is-finite.js +3 -1
  2021. data/lib/condenser/processors/node_modules/core-js-pure/stable/number/is-integer.js +3 -1
  2022. data/lib/condenser/processors/node_modules/core-js-pure/stable/number/is-nan.js +3 -1
  2023. data/lib/condenser/processors/node_modules/core-js-pure/stable/number/is-safe-integer.js +3 -1
  2024. data/lib/condenser/processors/node_modules/core-js-pure/stable/number/max-safe-integer.js +3 -1
  2025. data/lib/condenser/processors/node_modules/core-js-pure/stable/number/min-safe-integer.js +3 -1
  2026. data/lib/condenser/processors/node_modules/core-js-pure/stable/number/parse-float.js +3 -1
  2027. data/lib/condenser/processors/node_modules/core-js-pure/stable/number/parse-int.js +3 -1
  2028. data/lib/condenser/processors/node_modules/core-js-pure/stable/number/to-fixed.js +3 -1
  2029. data/lib/condenser/processors/node_modules/core-js-pure/stable/number/to-precision.js +3 -1
  2030. data/lib/condenser/processors/node_modules/core-js-pure/stable/number/virtual/index.js +3 -1
  2031. data/lib/condenser/processors/node_modules/core-js-pure/stable/number/virtual/to-fixed.js +3 -1
  2032. data/lib/condenser/processors/node_modules/core-js-pure/stable/number/virtual/to-precision.js +3 -1
  2033. data/lib/condenser/processors/node_modules/core-js-pure/stable/object/assign.js +3 -1
  2034. data/lib/condenser/processors/node_modules/core-js-pure/stable/object/create.js +3 -1
  2035. data/lib/condenser/processors/node_modules/core-js-pure/stable/object/define-getter.js +3 -1
  2036. data/lib/condenser/processors/node_modules/core-js-pure/stable/object/define-properties.js +3 -1
  2037. data/lib/condenser/processors/node_modules/core-js-pure/stable/object/define-property.js +3 -1
  2038. data/lib/condenser/processors/node_modules/core-js-pure/stable/object/define-setter.js +3 -1
  2039. data/lib/condenser/processors/node_modules/core-js-pure/stable/object/entries.js +3 -1
  2040. data/lib/condenser/processors/node_modules/core-js-pure/stable/object/freeze.js +3 -1
  2041. data/lib/condenser/processors/node_modules/core-js-pure/stable/object/from-entries.js +3 -1
  2042. data/lib/condenser/processors/node_modules/core-js-pure/stable/object/get-own-property-descriptor.js +3 -1
  2043. data/lib/condenser/processors/node_modules/core-js-pure/stable/object/get-own-property-descriptors.js +3 -1
  2044. data/lib/condenser/processors/node_modules/core-js-pure/stable/object/get-own-property-names.js +3 -1
  2045. data/lib/condenser/processors/node_modules/core-js-pure/stable/object/get-own-property-symbols.js +3 -1
  2046. data/lib/condenser/processors/node_modules/core-js-pure/stable/object/get-prototype-of.js +3 -1
  2047. data/lib/condenser/processors/node_modules/core-js-pure/stable/object/index.js +3 -1
  2048. data/lib/condenser/processors/node_modules/core-js-pure/stable/object/is-extensible.js +3 -1
  2049. data/lib/condenser/processors/node_modules/core-js-pure/stable/object/is-frozen.js +3 -1
  2050. data/lib/condenser/processors/node_modules/core-js-pure/stable/object/is-sealed.js +3 -1
  2051. data/lib/condenser/processors/node_modules/core-js-pure/stable/object/is.js +3 -1
  2052. data/lib/condenser/processors/node_modules/core-js-pure/stable/object/keys.js +3 -1
  2053. data/lib/condenser/processors/node_modules/core-js-pure/stable/object/lookup-getter.js +3 -1
  2054. data/lib/condenser/processors/node_modules/core-js-pure/stable/object/lookup-setter.js +3 -1
  2055. data/lib/condenser/processors/node_modules/core-js-pure/stable/object/prevent-extensions.js +3 -1
  2056. data/lib/condenser/processors/node_modules/core-js-pure/stable/object/seal.js +3 -1
  2057. data/lib/condenser/processors/node_modules/core-js-pure/stable/object/set-prototype-of.js +3 -1
  2058. data/lib/condenser/processors/node_modules/core-js-pure/stable/object/to-string.js +3 -1
  2059. data/lib/condenser/processors/node_modules/core-js-pure/stable/object/values.js +3 -1
  2060. data/lib/condenser/processors/node_modules/core-js-pure/stable/parse-float.js +3 -1
  2061. data/lib/condenser/processors/node_modules/core-js-pure/stable/parse-int.js +3 -1
  2062. data/lib/condenser/processors/node_modules/core-js-pure/stable/promise/all-settled.js +3 -1
  2063. data/lib/condenser/processors/node_modules/core-js-pure/stable/promise/finally.js +3 -1
  2064. data/lib/condenser/processors/node_modules/core-js-pure/stable/promise/index.js +3 -1
  2065. data/lib/condenser/processors/node_modules/core-js-pure/stable/queue-microtask.js +3 -1
  2066. data/lib/condenser/processors/node_modules/core-js-pure/stable/reflect/apply.js +3 -1
  2067. data/lib/condenser/processors/node_modules/core-js-pure/stable/reflect/construct.js +3 -1
  2068. data/lib/condenser/processors/node_modules/core-js-pure/stable/reflect/define-property.js +3 -1
  2069. data/lib/condenser/processors/node_modules/core-js-pure/stable/reflect/delete-property.js +3 -1
  2070. data/lib/condenser/processors/node_modules/core-js-pure/stable/reflect/get-own-property-descriptor.js +3 -1
  2071. data/lib/condenser/processors/node_modules/core-js-pure/stable/reflect/get-prototype-of.js +3 -1
  2072. data/lib/condenser/processors/node_modules/core-js-pure/stable/reflect/get.js +3 -1
  2073. data/lib/condenser/processors/node_modules/core-js-pure/stable/reflect/has.js +3 -1
  2074. data/lib/condenser/processors/node_modules/core-js-pure/stable/reflect/index.js +3 -1
  2075. data/lib/condenser/processors/node_modules/core-js-pure/stable/reflect/is-extensible.js +3 -1
  2076. data/lib/condenser/processors/node_modules/core-js-pure/stable/reflect/own-keys.js +3 -1
  2077. data/lib/condenser/processors/node_modules/core-js-pure/stable/reflect/prevent-extensions.js +3 -1
  2078. data/lib/condenser/processors/node_modules/core-js-pure/stable/reflect/set-prototype-of.js +3 -1
  2079. data/lib/condenser/processors/node_modules/core-js-pure/stable/reflect/set.js +3 -1
  2080. data/lib/condenser/processors/node_modules/core-js-pure/stable/regexp/constructor.js +3 -1
  2081. data/lib/condenser/processors/node_modules/core-js-pure/stable/regexp/flags.js +3 -1
  2082. data/lib/condenser/processors/node_modules/core-js-pure/stable/regexp/index.js +3 -1
  2083. data/lib/condenser/processors/node_modules/core-js-pure/stable/regexp/match.js +3 -1
  2084. data/lib/condenser/processors/node_modules/core-js-pure/stable/regexp/replace.js +3 -1
  2085. data/lib/condenser/processors/node_modules/core-js-pure/stable/regexp/search.js +3 -1
  2086. data/lib/condenser/processors/node_modules/core-js-pure/stable/regexp/split.js +3 -1
  2087. data/lib/condenser/processors/node_modules/core-js-pure/stable/regexp/sticky.js +3 -0
  2088. data/lib/condenser/processors/node_modules/core-js-pure/stable/regexp/test.js +3 -0
  2089. data/lib/condenser/processors/node_modules/core-js-pure/stable/regexp/to-string.js +3 -1
  2090. data/lib/condenser/processors/node_modules/core-js-pure/stable/set-immediate.js +2 -1
  2091. data/lib/condenser/processors/node_modules/core-js-pure/stable/set-interval.js +2 -1
  2092. data/lib/condenser/processors/node_modules/core-js-pure/stable/set-timeout.js +2 -1
  2093. data/lib/condenser/processors/node_modules/core-js-pure/stable/set/index.js +3 -1
  2094. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/anchor.js +3 -1
  2095. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/big.js +3 -1
  2096. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/blink.js +3 -1
  2097. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/bold.js +3 -1
  2098. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/code-point-at.js +3 -1
  2099. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/ends-with.js +3 -1
  2100. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/fixed.js +3 -1
  2101. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/fontcolor.js +3 -1
  2102. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/fontsize.js +3 -1
  2103. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/from-code-point.js +3 -1
  2104. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/includes.js +3 -1
  2105. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/index.js +3 -1
  2106. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/italics.js +3 -1
  2107. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/iterator.js +3 -1
  2108. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/link.js +3 -1
  2109. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/match-all.js +3 -1
  2110. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/match.js +3 -1
  2111. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/pad-end.js +3 -1
  2112. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/pad-start.js +3 -1
  2113. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/raw.js +3 -1
  2114. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/repeat.js +3 -1
  2115. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/replace.js +3 -1
  2116. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/search.js +3 -1
  2117. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/small.js +3 -1
  2118. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/split.js +3 -1
  2119. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/starts-with.js +3 -1
  2120. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/strike.js +3 -1
  2121. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/sub.js +3 -1
  2122. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/sup.js +3 -1
  2123. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/trim-end.js +3 -1
  2124. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/trim-left.js +3 -1
  2125. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/trim-right.js +3 -1
  2126. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/trim-start.js +3 -1
  2127. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/trim.js +3 -1
  2128. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/virtual/anchor.js +3 -1
  2129. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/virtual/big.js +3 -1
  2130. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/virtual/blink.js +3 -1
  2131. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/virtual/bold.js +3 -1
  2132. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/virtual/code-point-at.js +3 -1
  2133. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/virtual/ends-with.js +3 -1
  2134. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/virtual/fixed.js +3 -1
  2135. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/virtual/fontcolor.js +3 -1
  2136. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/virtual/fontsize.js +3 -1
  2137. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/virtual/includes.js +3 -1
  2138. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/virtual/index.js +3 -1
  2139. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/virtual/italics.js +3 -1
  2140. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/virtual/iterator.js +3 -1
  2141. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/virtual/link.js +3 -1
  2142. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/virtual/match-all.js +3 -1
  2143. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/virtual/pad-end.js +3 -1
  2144. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/virtual/pad-start.js +3 -1
  2145. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/virtual/repeat.js +3 -1
  2146. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/virtual/small.js +3 -1
  2147. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/virtual/starts-with.js +3 -1
  2148. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/virtual/strike.js +3 -1
  2149. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/virtual/sub.js +3 -1
  2150. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/virtual/sup.js +3 -1
  2151. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/virtual/trim-end.js +3 -1
  2152. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/virtual/trim-left.js +3 -1
  2153. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/virtual/trim-right.js +3 -1
  2154. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/virtual/trim-start.js +3 -1
  2155. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/virtual/trim.js +3 -1
  2156. data/lib/condenser/processors/node_modules/core-js-pure/stable/symbol/async-iterator.js +3 -1
  2157. data/lib/condenser/processors/node_modules/core-js-pure/stable/symbol/for.js +3 -1
  2158. data/lib/condenser/processors/node_modules/core-js-pure/stable/symbol/has-instance.js +3 -1
  2159. data/lib/condenser/processors/node_modules/core-js-pure/stable/symbol/index.js +3 -1
  2160. data/lib/condenser/processors/node_modules/core-js-pure/stable/symbol/is-concat-spreadable.js +3 -1
  2161. data/lib/condenser/processors/node_modules/core-js-pure/stable/symbol/iterator.js +3 -1
  2162. data/lib/condenser/processors/node_modules/core-js-pure/stable/symbol/key-for.js +3 -1
  2163. data/lib/condenser/processors/node_modules/core-js-pure/stable/symbol/match-all.js +3 -1
  2164. data/lib/condenser/processors/node_modules/core-js-pure/stable/symbol/match.js +3 -1
  2165. data/lib/condenser/processors/node_modules/core-js-pure/stable/symbol/replace.js +3 -1
  2166. data/lib/condenser/processors/node_modules/core-js-pure/stable/symbol/search.js +3 -1
  2167. data/lib/condenser/processors/node_modules/core-js-pure/stable/symbol/species.js +3 -1
  2168. data/lib/condenser/processors/node_modules/core-js-pure/stable/symbol/split.js +3 -1
  2169. data/lib/condenser/processors/node_modules/core-js-pure/stable/symbol/to-primitive.js +3 -1
  2170. data/lib/condenser/processors/node_modules/core-js-pure/stable/symbol/to-string-tag.js +3 -1
  2171. data/lib/condenser/processors/node_modules/core-js-pure/stable/symbol/unscopables.js +3 -1
  2172. data/lib/condenser/processors/node_modules/core-js-pure/stable/typed-array/float32-array.js +3 -1
  2173. data/lib/condenser/processors/node_modules/core-js-pure/stable/typed-array/float64-array.js +3 -1
  2174. data/lib/condenser/processors/node_modules/core-js-pure/stable/typed-array/index.js +3 -1
  2175. data/lib/condenser/processors/node_modules/core-js-pure/stable/typed-array/int16-array.js +3 -1
  2176. data/lib/condenser/processors/node_modules/core-js-pure/stable/typed-array/int32-array.js +3 -1
  2177. data/lib/condenser/processors/node_modules/core-js-pure/stable/typed-array/int8-array.js +3 -1
  2178. data/lib/condenser/processors/node_modules/core-js-pure/stable/typed-array/uint16-array.js +3 -1
  2179. data/lib/condenser/processors/node_modules/core-js-pure/stable/typed-array/uint32-array.js +3 -1
  2180. data/lib/condenser/processors/node_modules/core-js-pure/stable/typed-array/uint8-array.js +3 -1
  2181. data/lib/condenser/processors/node_modules/core-js-pure/stable/typed-array/uint8-clamped-array.js +3 -1
  2182. data/lib/condenser/processors/node_modules/core-js-pure/stable/url-search-params/index.js +3 -1
  2183. data/lib/condenser/processors/node_modules/core-js-pure/stable/url/index.js +3 -1
  2184. data/lib/condenser/processors/node_modules/core-js-pure/stable/weak-map/index.js +3 -1
  2185. data/lib/condenser/processors/node_modules/core-js-pure/stable/weak-set/index.js +3 -1
  2186. data/lib/condenser/processors/node_modules/core-js-pure/stage/0.js +2 -1
  2187. data/lib/condenser/processors/node_modules/core-js-pure/stage/1.js +3 -2
  2188. data/lib/condenser/processors/node_modules/core-js-pure/stage/2.js +4 -3
  2189. data/lib/condenser/processors/node_modules/core-js-pure/stage/3.js +4 -2
  2190. data/lib/condenser/processors/node_modules/core-js-pure/stage/4.js +3 -1
  2191. data/lib/condenser/processors/node_modules/core-js-pure/stage/index.js +3 -1
  2192. data/lib/condenser/processors/node_modules/core-js-pure/stage/pre.js +2 -1
  2193. data/lib/condenser/processors/node_modules/core-js-pure/web/dom-collections.js +2 -1
  2194. data/lib/condenser/processors/node_modules/core-js-pure/web/immediate.js +2 -1
  2195. data/lib/condenser/processors/node_modules/core-js-pure/web/index.js +2 -1
  2196. data/lib/condenser/processors/node_modules/core-js-pure/web/timers.js +2 -1
  2197. data/lib/condenser/processors/node_modules/electron-to-chromium/README.md +11 -1
  2198. data/lib/condenser/processors/node_modules/electron-to-chromium/chromium-versions.js +3 -1
  2199. data/lib/condenser/processors/node_modules/electron-to-chromium/full-chromium-versions.js +142 -0
  2200. data/lib/condenser/processors/node_modules/electron-to-chromium/full-versions.js +102 -0
  2201. data/lib/condenser/processors/node_modules/electron-to-chromium/package.json +11 -11
  2202. data/lib/condenser/processors/node_modules/electron-to-chromium/versions.js +3 -0
  2203. data/lib/condenser/processors/node_modules/has-symbols/.eslintrc +2 -1
  2204. data/lib/condenser/processors/node_modules/has-symbols/.github/FUNDING.yml +12 -0
  2205. data/lib/condenser/processors/node_modules/has-symbols/.github/workflows/rebase.yml +15 -0
  2206. data/lib/condenser/processors/node_modules/has-symbols/.travis.yml +9 -110
  2207. data/lib/condenser/processors/node_modules/has-symbols/CHANGELOG.md +34 -3
  2208. data/lib/condenser/processors/node_modules/has-symbols/package.json +26 -15
  2209. data/lib/condenser/processors/node_modules/has-symbols/shams.js +1 -1
  2210. data/lib/condenser/processors/node_modules/is-reference/CHANGELOG.md +4 -0
  2211. data/lib/condenser/processors/node_modules/is-reference/dist/is-reference.es.js +4 -2
  2212. data/lib/condenser/processors/node_modules/is-reference/dist/is-reference.js +4 -2
  2213. data/lib/condenser/processors/node_modules/is-reference/node_modules/@types/estree/LICENSE +21 -0
  2214. data/lib/condenser/processors/node_modules/is-reference/node_modules/@types/estree/README.md +16 -0
  2215. data/lib/condenser/processors/node_modules/is-reference/node_modules/@types/estree/index.d.ts +548 -0
  2216. data/lib/condenser/processors/node_modules/is-reference/node_modules/@types/estree/package.json +51 -0
  2217. data/lib/condenser/processors/node_modules/is-reference/package.json +5 -5
  2218. data/lib/condenser/processors/node_modules/json5/CHANGELOG.md +14 -0
  2219. data/lib/condenser/processors/node_modules/json5/README.md +1 -1
  2220. data/lib/condenser/processors/node_modules/json5/dist/index.js +30 -8
  2221. data/lib/condenser/processors/node_modules/json5/dist/index.min.js +1 -1
  2222. data/lib/condenser/processors/node_modules/json5/dist/index.min.mjs +1 -1
  2223. data/lib/condenser/processors/node_modules/json5/dist/index.mjs +8 -1
  2224. data/lib/condenser/processors/node_modules/json5/lib/stringify.js +8 -1
  2225. data/lib/condenser/processors/node_modules/json5/package.json +18 -17
  2226. data/lib/condenser/processors/node_modules/magic-string/CHANGELOG.md +8 -0
  2227. data/lib/condenser/processors/node_modules/magic-string/dist/magic-string.cjs.js +27 -8
  2228. data/lib/condenser/processors/node_modules/magic-string/dist/magic-string.cjs.js.map +1 -1
  2229. data/lib/condenser/processors/node_modules/magic-string/dist/magic-string.es.js +26 -8
  2230. data/lib/condenser/processors/node_modules/magic-string/dist/magic-string.es.js.map +1 -1
  2231. data/lib/condenser/processors/node_modules/magic-string/dist/magic-string.umd.js +27 -8
  2232. data/lib/condenser/processors/node_modules/magic-string/dist/magic-string.umd.js.map +1 -1
  2233. data/lib/condenser/processors/node_modules/magic-string/index.d.ts +6 -1
  2234. data/lib/condenser/processors/node_modules/magic-string/package.json +5 -5
  2235. data/lib/condenser/processors/node_modules/node-releases/.idea/workspace.xml +58 -92
  2236. data/lib/condenser/processors/node_modules/node-releases/data/processed/envs.json +368 -135
  2237. data/lib/condenser/processors/node_modules/node-releases/data/raw/nodejs.json +19 -0
  2238. data/lib/condenser/processors/node_modules/node-releases/data/release-schedule/release-schedule.json +8 -8
  2239. data/lib/condenser/processors/node_modules/node-releases/node_modules/.bin/semver +1 -0
  2240. data/lib/condenser/processors/node_modules/node-releases/node_modules/semver/CHANGELOG.md +70 -0
  2241. data/lib/condenser/processors/node_modules/node-releases/node_modules/semver/LICENSE +15 -0
  2242. data/lib/condenser/processors/node_modules/node-releases/node_modules/semver/README.md +443 -0
  2243. data/lib/condenser/processors/node_modules/node-releases/node_modules/semver/bin/semver.js +174 -0
  2244. data/lib/condenser/processors/node_modules/node-releases/node_modules/semver/package.json +60 -0
  2245. data/lib/condenser/processors/node_modules/node-releases/node_modules/semver/range.bnf +16 -0
  2246. data/lib/condenser/processors/node_modules/{core-js-compat → node-releases}/node_modules/semver/semver.js +0 -0
  2247. data/lib/condenser/processors/node_modules/node-releases/package.json +11 -11
  2248. data/lib/condenser/processors/node_modules/regexpu-core/package.json +13 -15
  2249. data/lib/condenser/processors/node_modules/regexpu-core/rewrite-pattern.js +14 -14
  2250. data/lib/condenser/processors/node_modules/regjsgen/LICENSE +1 -1
  2251. data/lib/condenser/processors/node_modules/regjsgen/README.md +12 -5
  2252. data/lib/condenser/processors/node_modules/regjsgen/package.json +9 -9
  2253. data/lib/condenser/processors/node_modules/regjsgen/regjsgen.js +3 -3
  2254. data/lib/condenser/processors/node_modules/regjsparser/package.json +5 -5
  2255. data/lib/condenser/processors/node_modules/regjsparser/parser.js +20 -3
  2256. data/lib/condenser/processors/node_modules/resolve/.travis.yml +5 -305
  2257. data/lib/condenser/processors/node_modules/resolve/index.js +2 -3
  2258. data/lib/condenser/processors/node_modules/resolve/lib/async.js +52 -45
  2259. data/lib/condenser/processors/node_modules/resolve/lib/core.json +1 -0
  2260. data/lib/condenser/processors/node_modules/resolve/lib/is-core.js +5 -0
  2261. data/lib/condenser/processors/node_modules/resolve/lib/sync.js +10 -10
  2262. data/lib/condenser/processors/node_modules/resolve/package.json +13 -9
  2263. data/lib/condenser/processors/node_modules/resolve/readme.markdown +3 -2
  2264. data/lib/condenser/processors/node_modules/resolve/test/core.js +3 -0
  2265. data/lib/condenser/processors/node_modules/resolve/test/filter.js +1 -1
  2266. data/lib/condenser/processors/node_modules/resolve/test/filter_sync.js +12 -5
  2267. data/lib/condenser/processors/node_modules/resolve/test/resolver.js +2 -2
  2268. data/lib/condenser/processors/node_modules/resolve/test/resolver_sync.js +2 -2
  2269. data/lib/condenser/processors/node_modules/resolve/test/symlinks.js +90 -1
  2270. data/lib/condenser/processors/node_modules/rollup-plugin-commonjs/CHANGELOG.md +5 -0
  2271. data/lib/condenser/processors/node_modules/rollup-plugin-commonjs/README.md +6 -4
  2272. data/lib/condenser/processors/node_modules/rollup-plugin-commonjs/dist/rollup-plugin-commonjs.cjs.js +6 -2
  2273. data/lib/condenser/processors/node_modules/rollup-plugin-commonjs/dist/rollup-plugin-commonjs.cjs.js.map +1 -1
  2274. data/lib/condenser/processors/node_modules/rollup-plugin-commonjs/dist/rollup-plugin-commonjs.es.js +7 -3
  2275. data/lib/condenser/processors/node_modules/rollup-plugin-commonjs/dist/rollup-plugin-commonjs.es.js.map +1 -1
  2276. data/lib/condenser/processors/node_modules/rollup-plugin-commonjs/package.json +6 -6
  2277. data/lib/condenser/processors/node_modules/rollup-plugin-commonjs/src/index.js +8 -2
  2278. data/lib/condenser/processors/node_modules/rollup-pluginutils/CHANGELOG.md +4 -0
  2279. data/lib/condenser/processors/node_modules/rollup-pluginutils/dist/pluginutils.cjs.js +1 -1
  2280. data/lib/condenser/processors/node_modules/rollup-pluginutils/dist/pluginutils.es.js +1 -1
  2281. data/lib/condenser/processors/node_modules/rollup-pluginutils/package.json +7 -7
  2282. data/lib/condenser/processors/node_modules/rollup-pluginutils/src/attachScopes.ts +1 -1
  2283. data/lib/condenser/processors/node_modules/rollup/CHANGELOG.md +406 -0
  2284. data/lib/condenser/processors/node_modules/rollup/LICENSE.md +27 -29
  2285. data/lib/condenser/processors/node_modules/rollup/README.md +5 -5
  2286. data/lib/condenser/processors/node_modules/rollup/dist/bin/rollup +240 -209
  2287. data/lib/condenser/processors/node_modules/rollup/dist/rollup.browser.es.js +17 -3
  2288. data/lib/condenser/processors/node_modules/rollup/dist/rollup.browser.js +17 -3
  2289. data/lib/condenser/processors/node_modules/rollup/dist/rollup.d.ts +58 -28
  2290. data/lib/condenser/processors/node_modules/rollup/dist/rollup.es.js +6317 -9944
  2291. data/lib/condenser/processors/node_modules/rollup/dist/rollup.js +6811 -10485
  2292. data/lib/condenser/processors/node_modules/rollup/dist/shared/index.js +61 -12
  2293. data/lib/condenser/processors/node_modules/rollup/package.json +43 -40
  2294. data/lib/condenser/processors/node_modules/semver/package.json +1 -2
  2295. data/lib/condenser/processors/node_modules/sourcemap-codec/CHANGELOG.md +4 -0
  2296. data/lib/condenser/processors/node_modules/sourcemap-codec/dist/sourcemap-codec.es.js.map +1 -0
  2297. data/lib/condenser/processors/node_modules/sourcemap-codec/dist/sourcemap-codec.umd.js.map +1 -0
  2298. data/lib/condenser/processors/node_modules/sourcemap-codec/package.json +6 -5
  2299. data/lib/condenser/processors/node_processor.rb +3 -0
  2300. data/lib/condenser/processors/package-lock.json +472 -456
  2301. data/lib/condenser/templating_engine/erb.rb +4 -2
  2302. data/lib/condenser/transformers/ejs.rb +6 -4
  2303. data/lib/condenser/transformers/sass_transformer.rb +4 -2
  2304. data/lib/condenser/version.rb +1 -1
  2305. data/test/minifiers/uglify_minifier_test.rb +2 -2
  2306. data/test/preprocessor/babel_test.rb +29 -15
  2307. data/test/templates/ejs_test.rb +21 -0
  2308. data/test/test_helper.rb +1 -2
  2309. metadata +386 -142
  2310. data/lib/condenser/processors/node_modules/.bin/regexp-tree +0 -1
  2311. data/lib/condenser/processors/node_modules/@babel/plugin-proposal-unicode-property-regex/src/index.js +0 -32
  2312. data/lib/condenser/processors/node_modules/@babel/plugin-proposal-unicode-property-regex/test/fixtures/with-unicode-flag/options.json +0 -10
  2313. data/lib/condenser/processors/node_modules/@babel/plugin-proposal-unicode-property-regex/test/fixtures/with-unicode-flag/script-extensions/input.js +0 -1
  2314. data/lib/condenser/processors/node_modules/@babel/plugin-proposal-unicode-property-regex/test/fixtures/with-unicode-flag/script-extensions/output.js +0 -1
  2315. data/lib/condenser/processors/node_modules/@babel/plugin-proposal-unicode-property-regex/test/fixtures/with-unicode-flag/simple/input.js +0 -1
  2316. data/lib/condenser/processors/node_modules/@babel/plugin-proposal-unicode-property-regex/test/fixtures/with-unicode-flag/simple/output.js +0 -1
  2317. data/lib/condenser/processors/node_modules/@babel/plugin-proposal-unicode-property-regex/test/fixtures/with-unicode-flag/unicode-10/input.js +0 -1
  2318. data/lib/condenser/processors/node_modules/@babel/plugin-proposal-unicode-property-regex/test/fixtures/with-unicode-flag/unicode-10/output.js +0 -1
  2319. data/lib/condenser/processors/node_modules/@babel/plugin-proposal-unicode-property-regex/test/fixtures/with-unicode-flag/unicode-11/input.js +0 -1
  2320. data/lib/condenser/processors/node_modules/@babel/plugin-proposal-unicode-property-regex/test/fixtures/with-unicode-flag/unicode-11/output.js +0 -1
  2321. data/lib/condenser/processors/node_modules/@babel/plugin-proposal-unicode-property-regex/test/fixtures/with-unicode-flag/unicode-12/input.js +0 -1
  2322. data/lib/condenser/processors/node_modules/@babel/plugin-proposal-unicode-property-regex/test/fixtures/with-unicode-flag/unicode-12/output.js +0 -1
  2323. data/lib/condenser/processors/node_modules/@babel/plugin-proposal-unicode-property-regex/test/fixtures/without-unicode-flag/options.json +0 -10
  2324. data/lib/condenser/processors/node_modules/@babel/plugin-proposal-unicode-property-regex/test/fixtures/without-unicode-flag/script-extensions/input.js +0 -1
  2325. data/lib/condenser/processors/node_modules/@babel/plugin-proposal-unicode-property-regex/test/fixtures/without-unicode-flag/script-extensions/output.js +0 -1
  2326. data/lib/condenser/processors/node_modules/@babel/plugin-proposal-unicode-property-regex/test/fixtures/without-unicode-flag/simple/input.js +0 -1
  2327. data/lib/condenser/processors/node_modules/@babel/plugin-proposal-unicode-property-regex/test/fixtures/without-unicode-flag/simple/output.js +0 -1
  2328. data/lib/condenser/processors/node_modules/@babel/plugin-proposal-unicode-property-regex/test/fixtures/without-unicode-flag/unicode-10/input.js +0 -1
  2329. data/lib/condenser/processors/node_modules/@babel/plugin-proposal-unicode-property-regex/test/fixtures/without-unicode-flag/unicode-10/output.js +0 -1
  2330. data/lib/condenser/processors/node_modules/@babel/plugin-proposal-unicode-property-regex/test/fixtures/without-unicode-flag/unicode-11/input.js +0 -1
  2331. data/lib/condenser/processors/node_modules/@babel/plugin-proposal-unicode-property-regex/test/fixtures/without-unicode-flag/unicode-11/output.js +0 -1
  2332. data/lib/condenser/processors/node_modules/@babel/plugin-proposal-unicode-property-regex/test/fixtures/without-unicode-flag/unicode-12/input.js +0 -1
  2333. data/lib/condenser/processors/node_modules/@babel/plugin-proposal-unicode-property-regex/test/fixtures/without-unicode-flag/unicode-12/output.js +0 -1
  2334. data/lib/condenser/processors/node_modules/@babel/plugin-proposal-unicode-property-regex/test/index.js +0 -2
  2335. data/lib/condenser/processors/node_modules/@babel/plugin-transform-dotall-regex/src/index.js +0 -25
  2336. data/lib/condenser/processors/node_modules/@babel/plugin-transform-dotall-regex/test/fixtures/dotall-regex/options.json +0 -3
  2337. data/lib/condenser/processors/node_modules/@babel/plugin-transform-dotall-regex/test/fixtures/dotall-regex/simple/input.js +0 -2
  2338. data/lib/condenser/processors/node_modules/@babel/plugin-transform-dotall-regex/test/fixtures/dotall-regex/simple/output.js +0 -2
  2339. data/lib/condenser/processors/node_modules/@babel/plugin-transform-dotall-regex/test/fixtures/dotall-regex/with-unicode-flag/input.js +0 -2
  2340. data/lib/condenser/processors/node_modules/@babel/plugin-transform-dotall-regex/test/fixtures/dotall-regex/with-unicode-flag/output.js +0 -2
  2341. data/lib/condenser/processors/node_modules/@babel/plugin-transform-dotall-regex/test/index.js +0 -2
  2342. data/lib/condenser/processors/node_modules/@babel/preset-env/CHANGELOG.md +0 -668
  2343. data/lib/condenser/processors/node_modules/@babel/preset-env/yarn-error.log +0 -57
  2344. data/lib/condenser/processors/node_modules/core-js-pure/internals/function-to-string.js +0 -3
  2345. data/lib/condenser/processors/node_modules/core-js-pure/internals/wrapped-well-known-symbol.js +0 -1
  2346. data/lib/condenser/processors/node_modules/core-js-pure/scripts/postinstall.js +0 -24
  2347. data/lib/condenser/processors/node_modules/has-symbols/.npmignore +0 -37
  2348. data/lib/condenser/processors/node_modules/regexp-tree/LICENSE +0 -21
  2349. data/lib/condenser/processors/node_modules/regexp-tree/README.md +0 -2085
  2350. data/lib/condenser/processors/node_modules/regexp-tree/bin/regexp-tree +0 -5
  2351. data/lib/condenser/processors/node_modules/regexp-tree/dist/bin/regexp-tree.js +0 -16
  2352. data/lib/condenser/processors/node_modules/regexp-tree/dist/compat-transpiler/index.js +0 -50
  2353. data/lib/condenser/processors/node_modules/regexp-tree/dist/compat-transpiler/runtime/index.js +0 -123
  2354. data/lib/condenser/processors/node_modules/regexp-tree/dist/compat-transpiler/transforms/compat-dotall-s-transform.js +0 -69
  2355. data/lib/condenser/processors/node_modules/regexp-tree/dist/compat-transpiler/transforms/compat-named-capturing-groups-transform.js +0 -59
  2356. data/lib/condenser/processors/node_modules/regexp-tree/dist/compat-transpiler/transforms/compat-x-flag-transform.js +0 -23
  2357. data/lib/condenser/processors/node_modules/regexp-tree/dist/compat-transpiler/transforms/index.js +0 -17
  2358. data/lib/condenser/processors/node_modules/regexp-tree/dist/generator/index.js +0 -177
  2359. data/lib/condenser/processors/node_modules/regexp-tree/dist/interpreter/finite-automaton/dfa/dfa-minimizer.js +0 -412
  2360. data/lib/condenser/processors/node_modules/regexp-tree/dist/interpreter/finite-automaton/dfa/dfa.js +0 -380
  2361. data/lib/condenser/processors/node_modules/regexp-tree/dist/interpreter/finite-automaton/index.js +0 -59
  2362. data/lib/condenser/processors/node_modules/regexp-tree/dist/interpreter/finite-automaton/nfa/builders.js +0 -227
  2363. data/lib/condenser/processors/node_modules/regexp-tree/dist/interpreter/finite-automaton/nfa/nfa-from-regexp.js +0 -94
  2364. data/lib/condenser/processors/node_modules/regexp-tree/dist/interpreter/finite-automaton/nfa/nfa-state.js +0 -220
  2365. data/lib/condenser/processors/node_modules/regexp-tree/dist/interpreter/finite-automaton/nfa/nfa.js +0 -234
  2366. data/lib/condenser/processors/node_modules/regexp-tree/dist/interpreter/finite-automaton/special-symbols.js +0 -22
  2367. data/lib/condenser/processors/node_modules/regexp-tree/dist/interpreter/finite-automaton/state.js +0 -81
  2368. data/lib/condenser/processors/node_modules/regexp-tree/dist/interpreter/finite-automaton/table-printer.js +0 -27
  2369. data/lib/condenser/processors/node_modules/regexp-tree/dist/interpreter/finite-automaton/transforms/char-plus-to-star-transform.js +0 -35
  2370. data/lib/condenser/processors/node_modules/regexp-tree/dist/interpreter/finite-automaton/transforms/index.js +0 -10
  2371. data/lib/condenser/processors/node_modules/regexp-tree/dist/optimizer/index.js +0 -83
  2372. data/lib/condenser/processors/node_modules/regexp-tree/dist/optimizer/transforms/char-case-insensitive-lowercase-transform.js +0 -110
  2373. data/lib/condenser/processors/node_modules/regexp-tree/dist/optimizer/transforms/char-class-classranges-merge-transform.js +0 -339
  2374. data/lib/condenser/processors/node_modules/regexp-tree/dist/optimizer/transforms/char-class-classranges-to-chars-transform.js +0 -30
  2375. data/lib/condenser/processors/node_modules/regexp-tree/dist/optimizer/transforms/char-class-remove-duplicates-transform.js +0 -33
  2376. data/lib/condenser/processors/node_modules/regexp-tree/dist/optimizer/transforms/char-class-to-meta-transform.js +0 -211
  2377. data/lib/condenser/processors/node_modules/regexp-tree/dist/optimizer/transforms/char-class-to-single-char-transform.js +0 -71
  2378. data/lib/condenser/processors/node_modules/regexp-tree/dist/optimizer/transforms/char-code-to-simple-char-transform.js +0 -84
  2379. data/lib/condenser/processors/node_modules/regexp-tree/dist/optimizer/transforms/char-escape-unescape-transform.js +0 -143
  2380. data/lib/condenser/processors/node_modules/regexp-tree/dist/optimizer/transforms/char-surrogate-pair-to-single-unicode-transform.js +0 -27
  2381. data/lib/condenser/processors/node_modules/regexp-tree/dist/optimizer/transforms/combine-repeating-patterns-transform.js +0 -195
  2382. data/lib/condenser/processors/node_modules/regexp-tree/dist/optimizer/transforms/disjunction-remove-duplicates-transform.js +0 -44
  2383. data/lib/condenser/processors/node_modules/regexp-tree/dist/optimizer/transforms/group-single-chars-to-char-class.js +0 -92
  2384. data/lib/condenser/processors/node_modules/regexp-tree/dist/optimizer/transforms/index.js +0 -56
  2385. data/lib/condenser/processors/node_modules/regexp-tree/dist/optimizer/transforms/quantifier-range-to-symbol-transform.js +0 -74
  2386. data/lib/condenser/processors/node_modules/regexp-tree/dist/optimizer/transforms/quantifiers-merge-transform.js +0 -113
  2387. data/lib/condenser/processors/node_modules/regexp-tree/dist/optimizer/transforms/remove-empty-group-transform.js +0 -34
  2388. data/lib/condenser/processors/node_modules/regexp-tree/dist/optimizer/transforms/ungroup-transform.js +0 -55
  2389. data/lib/condenser/processors/node_modules/regexp-tree/dist/parser/generated/regexp-tree.js +0 -1405
  2390. data/lib/condenser/processors/node_modules/regexp-tree/dist/parser/index.js +0 -28
  2391. data/lib/condenser/processors/node_modules/regexp-tree/dist/parser/unicode/parser-unicode-properties.js +0 -379
  2392. data/lib/condenser/processors/node_modules/regexp-tree/dist/regexp-tree.js +0 -178
  2393. data/lib/condenser/processors/node_modules/regexp-tree/dist/transform/index.js +0 -138
  2394. data/lib/condenser/processors/node_modules/regexp-tree/dist/transform/utils.js +0 -88
  2395. data/lib/condenser/processors/node_modules/regexp-tree/dist/traverse/index.js +0 -313
  2396. data/lib/condenser/processors/node_modules/regexp-tree/dist/traverse/node-path.js +0 -426
  2397. data/lib/condenser/processors/node_modules/regexp-tree/dist/utils/clone.js +0 -29
  2398. data/lib/condenser/processors/node_modules/regexp-tree/index.d.ts +0 -294
  2399. data/lib/condenser/processors/node_modules/regexp-tree/index.js +0 -8
  2400. data/lib/condenser/processors/node_modules/regexp-tree/package.json +0 -70
  2401. data/lib/condenser/processors/node_modules/resolve/.editorconfig +0 -20
  2402. data/lib/condenser/processors/node_modules/trim-right/index.js +0 -10
  2403. data/lib/condenser/processors/node_modules/trim-right/license +0 -21
  2404. data/lib/condenser/processors/node_modules/trim-right/package.json +0 -69
  2405. data/lib/condenser/processors/node_modules/trim-right/readme.md +0 -30
@@ -1 +1 @@
1
- {"version":3,"file":"magic-string.es.js","sources":["../src/Chunk.js","../src/SourceMap.js","../src/utils/guessIndent.js","../src/utils/getRelativePath.js","../src/utils/isObject.js","../src/utils/getLocator.js","../src/utils/Mappings.js","../src/MagicString.js","../src/Bundle.js"],"sourcesContent":["export default class Chunk {\n\tconstructor(start, end, content) {\n\t\tthis.start = start;\n\t\tthis.end = end;\n\t\tthis.original = content;\n\n\t\tthis.intro = '';\n\t\tthis.outro = '';\n\n\t\tthis.content = content;\n\t\tthis.storeName = false;\n\t\tthis.edited = false;\n\n\t\t// we make these non-enumerable, for sanity while debugging\n\t\tObject.defineProperties(this, {\n\t\t\tprevious: { writable: true, value: null },\n\t\t\tnext: { writable: true, value: null }\n\t\t});\n\t}\n\n\tappendLeft(content) {\n\t\tthis.outro += content;\n\t}\n\n\tappendRight(content) {\n\t\tthis.intro = this.intro + content;\n\t}\n\n\tclone() {\n\t\tconst chunk = new Chunk(this.start, this.end, this.original);\n\n\t\tchunk.intro = this.intro;\n\t\tchunk.outro = this.outro;\n\t\tchunk.content = this.content;\n\t\tchunk.storeName = this.storeName;\n\t\tchunk.edited = this.edited;\n\n\t\treturn chunk;\n\t}\n\n\tcontains(index) {\n\t\treturn this.start < index && index < this.end;\n\t}\n\n\teachNext(fn) {\n\t\tlet chunk = this;\n\t\twhile (chunk) {\n\t\t\tfn(chunk);\n\t\t\tchunk = chunk.next;\n\t\t}\n\t}\n\n\teachPrevious(fn) {\n\t\tlet chunk = this;\n\t\twhile (chunk) {\n\t\t\tfn(chunk);\n\t\t\tchunk = chunk.previous;\n\t\t}\n\t}\n\n\tedit(content, storeName, contentOnly) {\n\t\tthis.content = content;\n\t\tif (!contentOnly) {\n\t\t\tthis.intro = '';\n\t\t\tthis.outro = '';\n\t\t}\n\t\tthis.storeName = storeName;\n\n\t\tthis.edited = true;\n\n\t\treturn this;\n\t}\n\n\tprependLeft(content) {\n\t\tthis.outro = content + this.outro;\n\t}\n\n\tprependRight(content) {\n\t\tthis.intro = content + this.intro;\n\t}\n\n\tsplit(index) {\n\t\tconst sliceIndex = index - this.start;\n\n\t\tconst originalBefore = this.original.slice(0, sliceIndex);\n\t\tconst originalAfter = this.original.slice(sliceIndex);\n\n\t\tthis.original = originalBefore;\n\n\t\tconst newChunk = new Chunk(index, this.end, originalAfter);\n\t\tnewChunk.outro = this.outro;\n\t\tthis.outro = '';\n\n\t\tthis.end = index;\n\n\t\tif (this.edited) {\n\t\t\t// TODO is this block necessary?...\n\t\t\tnewChunk.edit('', false);\n\t\t\tthis.content = '';\n\t\t} else {\n\t\t\tthis.content = originalBefore;\n\t\t}\n\n\t\tnewChunk.next = this.next;\n\t\tif (newChunk.next) newChunk.next.previous = newChunk;\n\t\tnewChunk.previous = this;\n\t\tthis.next = newChunk;\n\n\t\treturn newChunk;\n\t}\n\n\ttoString() {\n\t\treturn this.intro + this.content + this.outro;\n\t}\n\n\ttrimEnd(rx) {\n\t\tthis.outro = this.outro.replace(rx, '');\n\t\tif (this.outro.length) return true;\n\n\t\tconst trimmed = this.content.replace(rx, '');\n\n\t\tif (trimmed.length) {\n\t\t\tif (trimmed !== this.content) {\n\t\t\t\tthis.split(this.start + trimmed.length).edit('', undefined, true);\n\t\t\t}\n\t\t\treturn true;\n\n\t\t} else {\n\t\t\tthis.edit('', undefined, true);\n\n\t\t\tthis.intro = this.intro.replace(rx, '');\n\t\t\tif (this.intro.length) return true;\n\t\t}\n\t}\n\n\ttrimStart(rx) {\n\t\tthis.intro = this.intro.replace(rx, '');\n\t\tif (this.intro.length) return true;\n\n\t\tconst trimmed = this.content.replace(rx, '');\n\n\t\tif (trimmed.length) {\n\t\t\tif (trimmed !== this.content) {\n\t\t\t\tthis.split(this.end - trimmed.length);\n\t\t\t\tthis.edit('', undefined, true);\n\t\t\t}\n\t\t\treturn true;\n\n\t\t} else {\n\t\t\tthis.edit('', undefined, true);\n\n\t\t\tthis.outro = this.outro.replace(rx, '');\n\t\t\tif (this.outro.length) return true;\n\t\t}\n\t}\n}\n","import { encode } from 'sourcemap-codec';\n\nlet btoa = () => {\n\tthrow new Error('Unsupported environment: `window.btoa` or `Buffer` should be supported.');\n};\nif (typeof window !== 'undefined' && typeof window.btoa === 'function') {\n\tbtoa = str => window.btoa(unescape(encodeURIComponent(str)));\n} else if (typeof Buffer === 'function') {\n\tbtoa = str => Buffer.from(str, 'utf-8').toString('base64');\n}\n\nexport default class SourceMap {\n\tconstructor(properties) {\n\t\tthis.version = 3;\n\t\tthis.file = properties.file;\n\t\tthis.sources = properties.sources;\n\t\tthis.sourcesContent = properties.sourcesContent;\n\t\tthis.names = properties.names;\n\t\tthis.mappings = encode(properties.mappings);\n\t}\n\n\ttoString() {\n\t\treturn JSON.stringify(this);\n\t}\n\n\ttoUrl() {\n\t\treturn 'data:application/json;charset=utf-8;base64,' + btoa(this.toString());\n\t}\n}\n","export default function guessIndent(code) {\n\tconst lines = code.split('\\n');\n\n\tconst tabbed = lines.filter(line => /^\\t+/.test(line));\n\tconst spaced = lines.filter(line => /^ {2,}/.test(line));\n\n\tif (tabbed.length === 0 && spaced.length === 0) {\n\t\treturn null;\n\t}\n\n\t// More lines tabbed than spaced? Assume tabs, and\n\t// default to tabs in the case of a tie (or nothing\n\t// to go on)\n\tif (tabbed.length >= spaced.length) {\n\t\treturn '\\t';\n\t}\n\n\t// Otherwise, we need to guess the multiple\n\tconst min = spaced.reduce((previous, current) => {\n\t\tconst numSpaces = /^ +/.exec(current)[0].length;\n\t\treturn Math.min(numSpaces, previous);\n\t}, Infinity);\n\n\treturn new Array(min + 1).join(' ');\n}\n","export default function getRelativePath(from, to) {\n\tconst fromParts = from.split(/[/\\\\]/);\n\tconst toParts = to.split(/[/\\\\]/);\n\n\tfromParts.pop(); // get dirname\n\n\twhile (fromParts[0] === toParts[0]) {\n\t\tfromParts.shift();\n\t\ttoParts.shift();\n\t}\n\n\tif (fromParts.length) {\n\t\tlet i = fromParts.length;\n\t\twhile (i--) fromParts[i] = '..';\n\t}\n\n\treturn fromParts.concat(toParts).join('/');\n}\n","const toString = Object.prototype.toString;\n\nexport default function isObject(thing) {\n\treturn toString.call(thing) === '[object Object]';\n}\n","export default function getLocator(source) {\n\tconst originalLines = source.split('\\n');\n\tconst lineOffsets = [];\n\n\tfor (let i = 0, pos = 0; i < originalLines.length; i++) {\n\t\tlineOffsets.push(pos);\n\t\tpos += originalLines[i].length + 1;\n\t}\n\n\treturn function locate(index) {\n\t\tlet i = 0;\n\t\tlet j = lineOffsets.length;\n\t\twhile (i < j) {\n\t\t\tconst m = (i + j) >> 1;\n\t\t\tif (index < lineOffsets[m]) {\n\t\t\t\tj = m;\n\t\t\t} else {\n\t\t\t\ti = m + 1;\n\t\t\t}\n\t\t}\n\t\tconst line = i - 1;\n\t\tconst column = index - lineOffsets[line];\n\t\treturn { line, column };\n\t};\n}\n","export default class Mappings {\n\tconstructor(hires) {\n\t\tthis.hires = hires;\n\t\tthis.generatedCodeLine = 0;\n\t\tthis.generatedCodeColumn = 0;\n\t\tthis.raw = [];\n\t\tthis.rawSegments = this.raw[this.generatedCodeLine] = [];\n\t\tthis.pending = null;\n\t}\n\n\taddEdit(sourceIndex, content, loc, nameIndex) {\n\t\tif (content.length) {\n\t\t\tconst segment = [this.generatedCodeColumn, sourceIndex, loc.line, loc.column];\n\t\t\tif (nameIndex >= 0) {\n\t\t\t\tsegment.push(nameIndex);\n\t\t\t}\n\t\t\tthis.rawSegments.push(segment);\n\t\t} else if (this.pending) {\n\t\t\tthis.rawSegments.push(this.pending);\n\t\t}\n\n\t\tthis.advance(content);\n\t\tthis.pending = null;\n\t}\n\n\taddUneditedChunk(sourceIndex, chunk, original, loc, sourcemapLocations) {\n\t\tlet originalCharIndex = chunk.start;\n\t\tlet first = true;\n\n\t\twhile (originalCharIndex < chunk.end) {\n\t\t\tif (this.hires || first || sourcemapLocations[originalCharIndex]) {\n\t\t\t\tthis.rawSegments.push([this.generatedCodeColumn, sourceIndex, loc.line, loc.column]);\n\t\t\t}\n\n\t\t\tif (original[originalCharIndex] === '\\n') {\n\t\t\t\tloc.line += 1;\n\t\t\t\tloc.column = 0;\n\t\t\t\tthis.generatedCodeLine += 1;\n\t\t\t\tthis.raw[this.generatedCodeLine] = this.rawSegments = [];\n\t\t\t\tthis.generatedCodeColumn = 0;\n\t\t\t} else {\n\t\t\t\tloc.column += 1;\n\t\t\t\tthis.generatedCodeColumn += 1;\n\t\t\t}\n\n\t\t\toriginalCharIndex += 1;\n\t\t\tfirst = false;\n\t\t}\n\n\t\tthis.pending = [this.generatedCodeColumn, sourceIndex, loc.line, loc.column];\n\t}\n\n\tadvance(str) {\n\t\tif (!str) return;\n\n\t\tconst lines = str.split('\\n');\n\n\t\tif (lines.length > 1) {\n\t\t\tfor (let i = 0; i < lines.length - 1; i++) {\n\t\t\t\tthis.generatedCodeLine++;\n\t\t\t\tthis.raw[this.generatedCodeLine] = this.rawSegments = [];\n\t\t\t}\n\t\t\tthis.generatedCodeColumn = 0;\n\t\t}\n\n\t\tthis.generatedCodeColumn += lines[lines.length - 1].length;\n\t}\n}\n","import Chunk from './Chunk.js';\nimport SourceMap from './SourceMap.js';\nimport guessIndent from './utils/guessIndent.js';\nimport getRelativePath from './utils/getRelativePath.js';\nimport isObject from './utils/isObject.js';\nimport getLocator from './utils/getLocator.js';\nimport Mappings from './utils/Mappings.js';\nimport Stats from './utils/Stats.js';\n\nconst n = '\\n';\n\nconst warned = {\n\tinsertLeft: false,\n\tinsertRight: false,\n\tstoreName: false\n};\n\nexport default class MagicString {\n\tconstructor(string, options = {}) {\n\t\tconst chunk = new Chunk(0, string.length, string);\n\n\t\tObject.defineProperties(this, {\n\t\t\toriginal: { writable: true, value: string },\n\t\t\toutro: { writable: true, value: '' },\n\t\t\tintro: { writable: true, value: '' },\n\t\t\tfirstChunk: { writable: true, value: chunk },\n\t\t\tlastChunk: { writable: true, value: chunk },\n\t\t\tlastSearchedChunk: { writable: true, value: chunk },\n\t\t\tbyStart: { writable: true, value: {} },\n\t\t\tbyEnd: { writable: true, value: {} },\n\t\t\tfilename: { writable: true, value: options.filename },\n\t\t\tindentExclusionRanges: { writable: true, value: options.indentExclusionRanges },\n\t\t\tsourcemapLocations: { writable: true, value: {} },\n\t\t\tstoredNames: { writable: true, value: {} },\n\t\t\tindentStr: { writable: true, value: guessIndent(string) }\n\t\t});\n\n\t\tif (DEBUG) {\n\t\t\tObject.defineProperty(this, 'stats', { value: new Stats() });\n\t\t}\n\n\t\tthis.byStart[0] = chunk;\n\t\tthis.byEnd[string.length] = chunk;\n\t}\n\n\taddSourcemapLocation(char) {\n\t\tthis.sourcemapLocations[char] = true;\n\t}\n\n\tappend(content) {\n\t\tif (typeof content !== 'string') throw new TypeError('outro content must be a string');\n\n\t\tthis.outro += content;\n\t\treturn this;\n\t}\n\n\tappendLeft(index, content) {\n\t\tif (typeof content !== 'string') throw new TypeError('inserted content must be a string');\n\n\t\tif (DEBUG) this.stats.time('appendLeft');\n\n\t\tthis._split(index);\n\n\t\tconst chunk = this.byEnd[index];\n\n\t\tif (chunk) {\n\t\t\tchunk.appendLeft(content);\n\t\t} else {\n\t\t\tthis.intro += content;\n\t\t}\n\n\t\tif (DEBUG) this.stats.timeEnd('appendLeft');\n\t\treturn this;\n\t}\n\n\tappendRight(index, content) {\n\t\tif (typeof content !== 'string') throw new TypeError('inserted content must be a string');\n\n\t\tif (DEBUG) this.stats.time('appendRight');\n\n\t\tthis._split(index);\n\n\t\tconst chunk = this.byStart[index];\n\n\t\tif (chunk) {\n\t\t\tchunk.appendRight(content);\n\t\t} else {\n\t\t\tthis.outro += content;\n\t\t}\n\n\t\tif (DEBUG) this.stats.timeEnd('appendRight');\n\t\treturn this;\n\t}\n\n\tclone() {\n\t\tconst cloned = new MagicString(this.original, { filename: this.filename });\n\n\t\tlet originalChunk = this.firstChunk;\n\t\tlet clonedChunk = (cloned.firstChunk = cloned.lastSearchedChunk = originalChunk.clone());\n\n\t\twhile (originalChunk) {\n\t\t\tcloned.byStart[clonedChunk.start] = clonedChunk;\n\t\t\tcloned.byEnd[clonedChunk.end] = clonedChunk;\n\n\t\t\tconst nextOriginalChunk = originalChunk.next;\n\t\t\tconst nextClonedChunk = nextOriginalChunk && nextOriginalChunk.clone();\n\n\t\t\tif (nextClonedChunk) {\n\t\t\t\tclonedChunk.next = nextClonedChunk;\n\t\t\t\tnextClonedChunk.previous = clonedChunk;\n\n\t\t\t\tclonedChunk = nextClonedChunk;\n\t\t\t}\n\n\t\t\toriginalChunk = nextOriginalChunk;\n\t\t}\n\n\t\tcloned.lastChunk = clonedChunk;\n\n\t\tif (this.indentExclusionRanges) {\n\t\t\tcloned.indentExclusionRanges = this.indentExclusionRanges.slice();\n\t\t}\n\n\t\tObject.keys(this.sourcemapLocations).forEach(loc => {\n\t\t\tcloned.sourcemapLocations[loc] = true;\n\t\t});\n\n\t\treturn cloned;\n\t}\n\n\tgenerateDecodedMap(options) {\n\t\toptions = options || {};\n\n\t\tconst sourceIndex = 0;\n\t\tconst names = Object.keys(this.storedNames);\n\t\tconst mappings = new Mappings(options.hires);\n\n\t\tconst locate = getLocator(this.original);\n\n\t\tif (this.intro) {\n\t\t\tmappings.advance(this.intro);\n\t\t}\n\n\t\tthis.firstChunk.eachNext(chunk => {\n\t\t\tconst loc = locate(chunk.start);\n\n\t\t\tif (chunk.intro.length) mappings.advance(chunk.intro);\n\n\t\t\tif (chunk.edited) {\n\t\t\t\tmappings.addEdit(\n\t\t\t\t\tsourceIndex,\n\t\t\t\t\tchunk.content,\n\t\t\t\t\tloc,\n\t\t\t\t\tchunk.storeName ? names.indexOf(chunk.original) : -1\n\t\t\t\t);\n\t\t\t} else {\n\t\t\t\tmappings.addUneditedChunk(sourceIndex, chunk, this.original, loc, this.sourcemapLocations);\n\t\t\t}\n\n\t\t\tif (chunk.outro.length) mappings.advance(chunk.outro);\n\t\t});\n\n\t\treturn {\n\t\t\tfile: options.file ? options.file.split(/[/\\\\]/).pop() : null,\n\t\t\tsources: [options.source ? getRelativePath(options.file || '', options.source) : null],\n\t\t\tsourcesContent: options.includeContent ? [this.original] : [null],\n\t\t\tnames,\n\t\t\tmappings: mappings.raw\n\t\t};\n\t}\n\n\tgenerateMap(options) {\n\t\treturn new SourceMap(this.generateDecodedMap(options));\n\t}\n\n\tgetIndentString() {\n\t\treturn this.indentStr === null ? '\\t' : this.indentStr;\n\t}\n\n\tindent(indentStr, options) {\n\t\tconst pattern = /^[^\\r\\n]/gm;\n\n\t\tif (isObject(indentStr)) {\n\t\t\toptions = indentStr;\n\t\t\tindentStr = undefined;\n\t\t}\n\n\t\tindentStr = indentStr !== undefined ? indentStr : this.indentStr || '\\t';\n\n\t\tif (indentStr === '') return this; // noop\n\n\t\toptions = options || {};\n\n\t\t// Process exclusion ranges\n\t\tconst isExcluded = {};\n\n\t\tif (options.exclude) {\n\t\t\tconst exclusions =\n\t\t\t\ttypeof options.exclude[0] === 'number' ? [options.exclude] : options.exclude;\n\t\t\texclusions.forEach(exclusion => {\n\t\t\t\tfor (let i = exclusion[0]; i < exclusion[1]; i += 1) {\n\t\t\t\t\tisExcluded[i] = true;\n\t\t\t\t}\n\t\t\t});\n\t\t}\n\n\t\tlet shouldIndentNextCharacter = options.indentStart !== false;\n\t\tconst replacer = match => {\n\t\t\tif (shouldIndentNextCharacter) return `${indentStr}${match}`;\n\t\t\tshouldIndentNextCharacter = true;\n\t\t\treturn match;\n\t\t};\n\n\t\tthis.intro = this.intro.replace(pattern, replacer);\n\n\t\tlet charIndex = 0;\n\t\tlet chunk = this.firstChunk;\n\n\t\twhile (chunk) {\n\t\t\tconst end = chunk.end;\n\n\t\t\tif (chunk.edited) {\n\t\t\t\tif (!isExcluded[charIndex]) {\n\t\t\t\t\tchunk.content = chunk.content.replace(pattern, replacer);\n\n\t\t\t\t\tif (chunk.content.length) {\n\t\t\t\t\t\tshouldIndentNextCharacter = chunk.content[chunk.content.length - 1] === '\\n';\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tcharIndex = chunk.start;\n\n\t\t\t\twhile (charIndex < end) {\n\t\t\t\t\tif (!isExcluded[charIndex]) {\n\t\t\t\t\t\tconst char = this.original[charIndex];\n\n\t\t\t\t\t\tif (char === '\\n') {\n\t\t\t\t\t\t\tshouldIndentNextCharacter = true;\n\t\t\t\t\t\t} else if (char !== '\\r' && shouldIndentNextCharacter) {\n\t\t\t\t\t\t\tshouldIndentNextCharacter = false;\n\n\t\t\t\t\t\t\tif (charIndex === chunk.start) {\n\t\t\t\t\t\t\t\tchunk.prependRight(indentStr);\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tthis._splitChunk(chunk, charIndex);\n\t\t\t\t\t\t\t\tchunk = chunk.next;\n\t\t\t\t\t\t\t\tchunk.prependRight(indentStr);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\tcharIndex += 1;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tcharIndex = chunk.end;\n\t\t\tchunk = chunk.next;\n\t\t}\n\n\t\tthis.outro = this.outro.replace(pattern, replacer);\n\n\t\treturn this;\n\t}\n\n\tinsert() {\n\t\tthrow new Error('magicString.insert(...) is deprecated. Use prependRight(...) or appendLeft(...)');\n\t}\n\n\tinsertLeft(index, content) {\n\t\tif (!warned.insertLeft) {\n\t\t\tconsole.warn('magicString.insertLeft(...) is deprecated. Use magicString.appendLeft(...) instead'); // eslint-disable-line no-console\n\t\t\twarned.insertLeft = true;\n\t\t}\n\n\t\treturn this.appendLeft(index, content);\n\t}\n\n\tinsertRight(index, content) {\n\t\tif (!warned.insertRight) {\n\t\t\tconsole.warn('magicString.insertRight(...) is deprecated. Use magicString.prependRight(...) instead'); // eslint-disable-line no-console\n\t\t\twarned.insertRight = true;\n\t\t}\n\n\t\treturn this.prependRight(index, content);\n\t}\n\n\tmove(start, end, index) {\n\t\tif (index >= start && index <= end) throw new Error('Cannot move a selection inside itself');\n\n\t\tif (DEBUG) this.stats.time('move');\n\n\t\tthis._split(start);\n\t\tthis._split(end);\n\t\tthis._split(index);\n\n\t\tconst first = this.byStart[start];\n\t\tconst last = this.byEnd[end];\n\n\t\tconst oldLeft = first.previous;\n\t\tconst oldRight = last.next;\n\n\t\tconst newRight = this.byStart[index];\n\t\tif (!newRight && last === this.lastChunk) return this;\n\t\tconst newLeft = newRight ? newRight.previous : this.lastChunk;\n\n\t\tif (oldLeft) oldLeft.next = oldRight;\n\t\tif (oldRight) oldRight.previous = oldLeft;\n\n\t\tif (newLeft) newLeft.next = first;\n\t\tif (newRight) newRight.previous = last;\n\n\t\tif (!first.previous) this.firstChunk = last.next;\n\t\tif (!last.next) {\n\t\t\tthis.lastChunk = first.previous;\n\t\t\tthis.lastChunk.next = null;\n\t\t}\n\n\t\tfirst.previous = newLeft;\n\t\tlast.next = newRight || null;\n\n\t\tif (!newLeft) this.firstChunk = first;\n\t\tif (!newRight) this.lastChunk = last;\n\n\t\tif (DEBUG) this.stats.timeEnd('move');\n\t\treturn this;\n\t}\n\n\toverwrite(start, end, content, options) {\n\t\tif (typeof content !== 'string') throw new TypeError('replacement content must be a string');\n\n\t\twhile (start < 0) start += this.original.length;\n\t\twhile (end < 0) end += this.original.length;\n\n\t\tif (end > this.original.length) throw new Error('end is out of bounds');\n\t\tif (start === end)\n\t\t\tthrow new Error('Cannot overwrite a zero-length range – use appendLeft or prependRight instead');\n\n\t\tif (DEBUG) this.stats.time('overwrite');\n\n\t\tthis._split(start);\n\t\tthis._split(end);\n\n\t\tif (options === true) {\n\t\t\tif (!warned.storeName) {\n\t\t\t\tconsole.warn('The final argument to magicString.overwrite(...) should be an options object. See https://github.com/rich-harris/magic-string'); // eslint-disable-line no-console\n\t\t\t\twarned.storeName = true;\n\t\t\t}\n\n\t\t\toptions = { storeName: true };\n\t\t}\n\t\tconst storeName = options !== undefined ? options.storeName : false;\n\t\tconst contentOnly = options !== undefined ? options.contentOnly : false;\n\n\t\tif (storeName) {\n\t\t\tconst original = this.original.slice(start, end);\n\t\t\tthis.storedNames[original] = true;\n\t\t}\n\n\t\tconst first = this.byStart[start];\n\t\tconst last = this.byEnd[end];\n\n\t\tif (first) {\n\t\t\tif (end > first.end && first.next !== this.byStart[first.end]) {\n\t\t\t\tthrow new Error('Cannot overwrite across a split point');\n\t\t\t}\n\n\t\t\tfirst.edit(content, storeName, contentOnly);\n\n\t\t\tif (first !== last) {\n\t\t\t\tlet chunk = first.next;\n\t\t\t\twhile (chunk !== last) {\n\t\t\t\t\tchunk.edit('', false);\n\t\t\t\t\tchunk = chunk.next;\n\t\t\t\t}\n\n\t\t\t\tchunk.edit('', false);\n\t\t\t}\n\t\t} else {\n\t\t\t// must be inserting at the end\n\t\t\tconst newChunk = new Chunk(start, end, '').edit(content, storeName);\n\n\t\t\t// TODO last chunk in the array may not be the last chunk, if it's moved...\n\t\t\tlast.next = newChunk;\n\t\t\tnewChunk.previous = last;\n\t\t}\n\n\t\tif (DEBUG) this.stats.timeEnd('overwrite');\n\t\treturn this;\n\t}\n\n\tprepend(content) {\n\t\tif (typeof content !== 'string') throw new TypeError('outro content must be a string');\n\n\t\tthis.intro = content + this.intro;\n\t\treturn this;\n\t}\n\n\tprependLeft(index, content) {\n\t\tif (typeof content !== 'string') throw new TypeError('inserted content must be a string');\n\n\t\tif (DEBUG) this.stats.time('insertRight');\n\n\t\tthis._split(index);\n\n\t\tconst chunk = this.byEnd[index];\n\n\t\tif (chunk) {\n\t\t\tchunk.prependLeft(content);\n\t\t} else {\n\t\t\tthis.intro = content + this.intro;\n\t\t}\n\n\t\tif (DEBUG) this.stats.timeEnd('insertRight');\n\t\treturn this;\n\t}\n\n\tprependRight(index, content) {\n\t\tif (typeof content !== 'string') throw new TypeError('inserted content must be a string');\n\n\t\tif (DEBUG) this.stats.time('insertRight');\n\n\t\tthis._split(index);\n\n\t\tconst chunk = this.byStart[index];\n\n\t\tif (chunk) {\n\t\t\tchunk.prependRight(content);\n\t\t} else {\n\t\t\tthis.outro = content + this.outro;\n\t\t}\n\n\t\tif (DEBUG) this.stats.timeEnd('insertRight');\n\t\treturn this;\n\t}\n\n\tremove(start, end) {\n\t\twhile (start < 0) start += this.original.length;\n\t\twhile (end < 0) end += this.original.length;\n\n\t\tif (start === end) return this;\n\n\t\tif (start < 0 || end > this.original.length) throw new Error('Character is out of bounds');\n\t\tif (start > end) throw new Error('end must be greater than start');\n\n\t\tif (DEBUG) this.stats.time('remove');\n\n\t\tthis._split(start);\n\t\tthis._split(end);\n\n\t\tlet chunk = this.byStart[start];\n\n\t\twhile (chunk) {\n\t\t\tchunk.intro = '';\n\t\t\tchunk.outro = '';\n\t\t\tchunk.edit('');\n\n\t\t\tchunk = end > chunk.end ? this.byStart[chunk.end] : null;\n\t\t}\n\n\t\tif (DEBUG) this.stats.timeEnd('remove');\n\t\treturn this;\n\t}\n\n\tlastChar() {\n\t\tif (this.outro.length)\n\t\t\treturn this.outro[this.outro.length - 1];\n\t\tlet chunk = this.lastChunk;\n\t\tdo {\n\t\t\tif (chunk.outro.length)\n\t\t\t\treturn chunk.outro[chunk.outro.length - 1];\n\t\t\tif (chunk.content.length)\n\t\t\t\treturn chunk.content[chunk.content.length - 1];\n\t\t\tif (chunk.intro.length)\n\t\t\t\treturn chunk.intro[chunk.intro.length - 1];\n\t\t} while (chunk = chunk.previous);\n\t\tif (this.intro.length)\n\t\t\treturn this.intro[this.intro.length - 1];\n\t\treturn '';\n\t}\n\n\tlastLine() {\n\t\tlet lineIndex = this.outro.lastIndexOf(n);\n\t\tif (lineIndex !== -1)\n\t\t\treturn this.outro.substr(lineIndex + 1);\n\t\tlet lineStr = this.outro;\n\t\tlet chunk = this.lastChunk;\n\t\tdo {\n\t\t\tif (chunk.outro.length > 0) {\n\t\t\t\tlineIndex = chunk.outro.lastIndexOf(n);\n\t\t\t\tif (lineIndex !== -1)\n\t\t\t\t\treturn chunk.outro.substr(lineIndex + 1) + lineStr;\n\t\t\t\tlineStr = chunk.outro + lineStr;\n\t\t\t}\n\n\t\t\tif (chunk.content.length > 0) {\n\t\t\t\tlineIndex = chunk.content.lastIndexOf(n);\n\t\t\t\tif (lineIndex !== -1)\n\t\t\t\t\treturn chunk.content.substr(lineIndex + 1) + lineStr;\n\t\t\t\tlineStr = chunk.content + lineStr;\n\t\t\t}\n\n\t\t\tif (chunk.intro.length > 0) {\n\t\t\t\tlineIndex = chunk.intro.lastIndexOf(n);\n\t\t\t\tif (lineIndex !== -1)\n\t\t\t\t\treturn chunk.intro.substr(lineIndex + 1) + lineStr;\n\t\t\t\tlineStr = chunk.intro + lineStr;\n\t\t\t}\n\t\t} while (chunk = chunk.previous);\n\t\tlineIndex = this.intro.lastIndexOf(n);\n\t\tif (lineIndex !== -1)\n\t\t\treturn this.intro.substr(lineIndex + 1) + lineStr;\n\t\treturn this.intro + lineStr;\n\t}\n\n\tslice(start = 0, end = this.original.length) {\n\t\twhile (start < 0) start += this.original.length;\n\t\twhile (end < 0) end += this.original.length;\n\n\t\tlet result = '';\n\n\t\t// find start chunk\n\t\tlet chunk = this.firstChunk;\n\t\twhile (chunk && (chunk.start > start || chunk.end <= start)) {\n\t\t\t// found end chunk before start\n\t\t\tif (chunk.start < end && chunk.end >= end) {\n\t\t\t\treturn result;\n\t\t\t}\n\n\t\t\tchunk = chunk.next;\n\t\t}\n\n\t\tif (chunk && chunk.edited && chunk.start !== start)\n\t\t\tthrow new Error(`Cannot use replaced character ${start} as slice start anchor.`);\n\n\t\tconst startChunk = chunk;\n\t\twhile (chunk) {\n\t\t\tif (chunk.intro && (startChunk !== chunk || chunk.start === start)) {\n\t\t\t\tresult += chunk.intro;\n\t\t\t}\n\n\t\t\tconst containsEnd = chunk.start < end && chunk.end >= end;\n\t\t\tif (containsEnd && chunk.edited && chunk.end !== end)\n\t\t\t\tthrow new Error(`Cannot use replaced character ${end} as slice end anchor.`);\n\n\t\t\tconst sliceStart = startChunk === chunk ? start - chunk.start : 0;\n\t\t\tconst sliceEnd = containsEnd ? chunk.content.length + end - chunk.end : chunk.content.length;\n\n\t\t\tresult += chunk.content.slice(sliceStart, sliceEnd);\n\n\t\t\tif (chunk.outro && (!containsEnd || chunk.end === end)) {\n\t\t\t\tresult += chunk.outro;\n\t\t\t}\n\n\t\t\tif (containsEnd) {\n\t\t\t\tbreak;\n\t\t\t}\n\n\t\t\tchunk = chunk.next;\n\t\t}\n\n\t\treturn result;\n\t}\n\n\t// TODO deprecate this? not really very useful\n\tsnip(start, end) {\n\t\tconst clone = this.clone();\n\t\tclone.remove(0, start);\n\t\tclone.remove(end, clone.original.length);\n\n\t\treturn clone;\n\t}\n\n\t_split(index) {\n\t\tif (this.byStart[index] || this.byEnd[index]) return;\n\n\t\tif (DEBUG) this.stats.time('_split');\n\n\t\tlet chunk = this.lastSearchedChunk;\n\t\tconst searchForward = index > chunk.end;\n\n\t\twhile (chunk) {\n\t\t\tif (chunk.contains(index)) return this._splitChunk(chunk, index);\n\n\t\t\tchunk = searchForward ? this.byStart[chunk.end] : this.byEnd[chunk.start];\n\t\t}\n\t}\n\n\t_splitChunk(chunk, index) {\n\t\tif (chunk.edited && chunk.content.length) {\n\t\t\t// zero-length edited chunks are a special case (overlapping replacements)\n\t\t\tconst loc = getLocator(this.original)(index);\n\t\t\tthrow new Error(\n\t\t\t\t`Cannot split a chunk that has already been edited (${loc.line}:${loc.column} – \"${\n\t\t\t\t\tchunk.original\n\t\t\t\t}\")`\n\t\t\t);\n\t\t}\n\n\t\tconst newChunk = chunk.split(index);\n\n\t\tthis.byEnd[index] = chunk;\n\t\tthis.byStart[index] = newChunk;\n\t\tthis.byEnd[newChunk.end] = newChunk;\n\n\t\tif (chunk === this.lastChunk) this.lastChunk = newChunk;\n\n\t\tthis.lastSearchedChunk = chunk;\n\t\tif (DEBUG) this.stats.timeEnd('_split');\n\t\treturn true;\n\t}\n\n\ttoString() {\n\t\tlet str = this.intro;\n\n\t\tlet chunk = this.firstChunk;\n\t\twhile (chunk) {\n\t\t\tstr += chunk.toString();\n\t\t\tchunk = chunk.next;\n\t\t}\n\n\t\treturn str + this.outro;\n\t}\n\n\tisEmpty() {\n\t\tlet chunk = this.firstChunk;\n\t\tdo {\n\t\t\tif (chunk.intro.length && chunk.intro.trim() ||\n\t\t\t\t\tchunk.content.length && chunk.content.trim() ||\n\t\t\t\t\tchunk.outro.length && chunk.outro.trim())\n\t\t\t\treturn false;\n\t\t} while (chunk = chunk.next);\n\t\treturn true;\n\t}\n\n\tlength() {\n\t\tlet chunk = this.firstChunk;\n\t\tlet length = 0;\n\t\tdo {\n\t\t\tlength += chunk.intro.length + chunk.content.length + chunk.outro.length;\n\t\t} while (chunk = chunk.next);\n\t\treturn length;\n\t}\n\n\ttrimLines() {\n\t\treturn this.trim('[\\\\r\\\\n]');\n\t}\n\n\ttrim(charType) {\n\t\treturn this.trimStart(charType).trimEnd(charType);\n\t}\n\n\ttrimEndAborted(charType) {\n\t\tconst rx = new RegExp((charType || '\\\\s') + '+$');\n\n\t\tthis.outro = this.outro.replace(rx, '');\n\t\tif (this.outro.length) return true;\n\n\t\tlet chunk = this.lastChunk;\n\n\t\tdo {\n\t\t\tconst end = chunk.end;\n\t\t\tconst aborted = chunk.trimEnd(rx);\n\n\t\t\t// if chunk was trimmed, we have a new lastChunk\n\t\t\tif (chunk.end !== end) {\n\t\t\t\tif (this.lastChunk === chunk) {\n\t\t\t\t\tthis.lastChunk = chunk.next;\n\t\t\t\t}\n\n\t\t\t\tthis.byEnd[chunk.end] = chunk;\n\t\t\t\tthis.byStart[chunk.next.start] = chunk.next;\n\t\t\t\tthis.byEnd[chunk.next.end] = chunk.next;\n\t\t\t}\n\n\t\t\tif (aborted) return true;\n\t\t\tchunk = chunk.previous;\n\t\t} while (chunk);\n\n\t\treturn false;\n\t}\n\n\ttrimEnd(charType) {\n\t\tthis.trimEndAborted(charType);\n\t\treturn this;\n\t}\n\ttrimStartAborted(charType) {\n\t\tconst rx = new RegExp('^' + (charType || '\\\\s') + '+');\n\n\t\tthis.intro = this.intro.replace(rx, '');\n\t\tif (this.intro.length) return true;\n\n\t\tlet chunk = this.firstChunk;\n\n\t\tdo {\n\t\t\tconst end = chunk.end;\n\t\t\tconst aborted = chunk.trimStart(rx);\n\n\t\t\tif (chunk.end !== end) {\n\t\t\t\t// special case...\n\t\t\t\tif (chunk === this.lastChunk) this.lastChunk = chunk.next;\n\n\t\t\t\tthis.byEnd[chunk.end] = chunk;\n\t\t\t\tthis.byStart[chunk.next.start] = chunk.next;\n\t\t\t\tthis.byEnd[chunk.next.end] = chunk.next;\n\t\t\t}\n\n\t\t\tif (aborted) return true;\n\t\t\tchunk = chunk.next;\n\t\t} while (chunk);\n\n\t\treturn false;\n\t}\n\n\ttrimStart(charType) {\n\t\tthis.trimStartAborted(charType);\n\t\treturn this;\n\t}\n}\n","import MagicString from './MagicString.js';\nimport SourceMap from './SourceMap.js';\nimport getRelativePath from './utils/getRelativePath.js';\nimport isObject from './utils/isObject.js';\nimport getLocator from './utils/getLocator.js';\nimport Mappings from './utils/Mappings.js';\n\nconst hasOwnProp = Object.prototype.hasOwnProperty;\n\nexport default class Bundle {\n\tconstructor(options = {}) {\n\t\tthis.intro = options.intro || '';\n\t\tthis.separator = options.separator !== undefined ? options.separator : '\\n';\n\t\tthis.sources = [];\n\t\tthis.uniqueSources = [];\n\t\tthis.uniqueSourceIndexByFilename = {};\n\t}\n\n\taddSource(source) {\n\t\tif (source instanceof MagicString) {\n\t\t\treturn this.addSource({\n\t\t\t\tcontent: source,\n\t\t\t\tfilename: source.filename,\n\t\t\t\tseparator: this.separator\n\t\t\t});\n\t\t}\n\n\t\tif (!isObject(source) || !source.content) {\n\t\t\tthrow new Error('bundle.addSource() takes an object with a `content` property, which should be an instance of MagicString, and an optional `filename`');\n\t\t}\n\n\t\t['filename', 'indentExclusionRanges', 'separator'].forEach(option => {\n\t\t\tif (!hasOwnProp.call(source, option)) source[option] = source.content[option];\n\t\t});\n\n\t\tif (source.separator === undefined) {\n\t\t\t// TODO there's a bunch of this sort of thing, needs cleaning up\n\t\t\tsource.separator = this.separator;\n\t\t}\n\n\t\tif (source.filename) {\n\t\t\tif (!hasOwnProp.call(this.uniqueSourceIndexByFilename, source.filename)) {\n\t\t\t\tthis.uniqueSourceIndexByFilename[source.filename] = this.uniqueSources.length;\n\t\t\t\tthis.uniqueSources.push({ filename: source.filename, content: source.content.original });\n\t\t\t} else {\n\t\t\t\tconst uniqueSource = this.uniqueSources[this.uniqueSourceIndexByFilename[source.filename]];\n\t\t\t\tif (source.content.original !== uniqueSource.content) {\n\t\t\t\t\tthrow new Error(`Illegal source: same filename (${source.filename}), different contents`);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tthis.sources.push(source);\n\t\treturn this;\n\t}\n\n\tappend(str, options) {\n\t\tthis.addSource({\n\t\t\tcontent: new MagicString(str),\n\t\t\tseparator: (options && options.separator) || ''\n\t\t});\n\n\t\treturn this;\n\t}\n\n\tclone() {\n\t\tconst bundle = new Bundle({\n\t\t\tintro: this.intro,\n\t\t\tseparator: this.separator\n\t\t});\n\n\t\tthis.sources.forEach(source => {\n\t\t\tbundle.addSource({\n\t\t\t\tfilename: source.filename,\n\t\t\t\tcontent: source.content.clone(),\n\t\t\t\tseparator: source.separator\n\t\t\t});\n\t\t});\n\n\t\treturn bundle;\n\t}\n\n\tgenerateDecodedMap(options = {}) {\n\t\tconst names = [];\n\t\tthis.sources.forEach(source => {\n\t\t\tObject.keys(source.content.storedNames).forEach(name => {\n\t\t\t\tif (!~names.indexOf(name)) names.push(name);\n\t\t\t});\n\t\t});\n\n\t\tconst mappings = new Mappings(options.hires);\n\n\t\tif (this.intro) {\n\t\t\tmappings.advance(this.intro);\n\t\t}\n\n\t\tthis.sources.forEach((source, i) => {\n\t\t\tif (i > 0) {\n\t\t\t\tmappings.advance(this.separator);\n\t\t\t}\n\n\t\t\tconst sourceIndex = source.filename ? this.uniqueSourceIndexByFilename[source.filename] : -1;\n\t\t\tconst magicString = source.content;\n\t\t\tconst locate = getLocator(magicString.original);\n\n\t\t\tif (magicString.intro) {\n\t\t\t\tmappings.advance(magicString.intro);\n\t\t\t}\n\n\t\t\tmagicString.firstChunk.eachNext(chunk => {\n\t\t\t\tconst loc = locate(chunk.start);\n\n\t\t\t\tif (chunk.intro.length) mappings.advance(chunk.intro);\n\n\t\t\t\tif (source.filename) {\n\t\t\t\t\tif (chunk.edited) {\n\t\t\t\t\t\tmappings.addEdit(\n\t\t\t\t\t\t\tsourceIndex,\n\t\t\t\t\t\t\tchunk.content,\n\t\t\t\t\t\t\tloc,\n\t\t\t\t\t\t\tchunk.storeName ? names.indexOf(chunk.original) : -1\n\t\t\t\t\t\t);\n\t\t\t\t\t} else {\n\t\t\t\t\t\tmappings.addUneditedChunk(\n\t\t\t\t\t\t\tsourceIndex,\n\t\t\t\t\t\t\tchunk,\n\t\t\t\t\t\t\tmagicString.original,\n\t\t\t\t\t\t\tloc,\n\t\t\t\t\t\t\tmagicString.sourcemapLocations\n\t\t\t\t\t\t);\n\t\t\t\t\t}\n\t\t\t\t} else {\n\t\t\t\t\tmappings.advance(chunk.content);\n\t\t\t\t}\n\n\t\t\t\tif (chunk.outro.length) mappings.advance(chunk.outro);\n\t\t\t});\n\n\t\t\tif (magicString.outro) {\n\t\t\t\tmappings.advance(magicString.outro);\n\t\t\t}\n\t\t});\n\n\t\treturn {\n\t\t\tfile: options.file ? options.file.split(/[/\\\\]/).pop() : null,\n\t\t\tsources: this.uniqueSources.map(source => {\n\t\t\t\treturn options.file ? getRelativePath(options.file, source.filename) : source.filename;\n\t\t\t}),\n\t\t\tsourcesContent: this.uniqueSources.map(source => {\n\t\t\t\treturn options.includeContent ? source.content : null;\n\t\t\t}),\n\t\t\tnames,\n\t\t\tmappings: mappings.raw\n\t\t};\n\t}\n\n\tgenerateMap(options) {\n\t\treturn new SourceMap(this.generateDecodedMap(options));\n\t}\n\n\tgetIndentString() {\n\t\tconst indentStringCounts = {};\n\n\t\tthis.sources.forEach(source => {\n\t\t\tconst indentStr = source.content.indentStr;\n\n\t\t\tif (indentStr === null) return;\n\n\t\t\tif (!indentStringCounts[indentStr]) indentStringCounts[indentStr] = 0;\n\t\t\tindentStringCounts[indentStr] += 1;\n\t\t});\n\n\t\treturn (\n\t\t\tObject.keys(indentStringCounts).sort((a, b) => {\n\t\t\t\treturn indentStringCounts[a] - indentStringCounts[b];\n\t\t\t})[0] || '\\t'\n\t\t);\n\t}\n\n\tindent(indentStr) {\n\t\tif (!arguments.length) {\n\t\t\tindentStr = this.getIndentString();\n\t\t}\n\n\t\tif (indentStr === '') return this; // noop\n\n\t\tlet trailingNewline = !this.intro || this.intro.slice(-1) === '\\n';\n\n\t\tthis.sources.forEach((source, i) => {\n\t\t\tconst separator = source.separator !== undefined ? source.separator : this.separator;\n\t\t\tconst indentStart = trailingNewline || (i > 0 && /\\r?\\n$/.test(separator));\n\n\t\t\tsource.content.indent(indentStr, {\n\t\t\t\texclude: source.indentExclusionRanges,\n\t\t\t\tindentStart //: trailingNewline || /\\r?\\n$/.test( separator ) //true///\\r?\\n/.test( separator )\n\t\t\t});\n\n\t\t\ttrailingNewline = source.content.lastChar() === '\\n';\n\t\t});\n\n\t\tif (this.intro) {\n\t\t\tthis.intro =\n\t\t\t\tindentStr +\n\t\t\t\tthis.intro.replace(/^[^\\n]/gm, (match, index) => {\n\t\t\t\t\treturn index > 0 ? indentStr + match : match;\n\t\t\t\t});\n\t\t}\n\n\t\treturn this;\n\t}\n\n\tprepend(str) {\n\t\tthis.intro = str + this.intro;\n\t\treturn this;\n\t}\n\n\ttoString() {\n\t\tconst body = this.sources\n\t\t\t.map((source, i) => {\n\t\t\t\tconst separator = source.separator !== undefined ? source.separator : this.separator;\n\t\t\t\tconst str = (i > 0 ? separator : '') + source.content.toString();\n\n\t\t\t\treturn str;\n\t\t\t})\n\t\t\t.join('');\n\n\t\treturn this.intro + body;\n\t}\n\n\tisEmpty () {\n\t\tif (this.intro.length && this.intro.trim())\n\t\t\treturn false;\n\t\tif (this.sources.some(source => !source.content.isEmpty()))\n\t\t\treturn false;\n\t\treturn true;\n\t}\n\n\tlength() {\n\t\treturn this.sources.reduce((length, source) => length + source.content.length(), this.intro.length);\n\t}\n\n\ttrimLines() {\n\t\treturn this.trim('[\\\\r\\\\n]');\n\t}\n\n\ttrim(charType) {\n\t\treturn this.trimStart(charType).trimEnd(charType);\n\t}\n\n\ttrimStart(charType) {\n\t\tconst rx = new RegExp('^' + (charType || '\\\\s') + '+');\n\t\tthis.intro = this.intro.replace(rx, '');\n\n\t\tif (!this.intro) {\n\t\t\tlet source;\n\t\t\tlet i = 0;\n\n\t\t\tdo {\n\t\t\t\tsource = this.sources[i++];\n\t\t\t\tif (!source) {\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t} while (!source.content.trimStartAborted(charType));\n\t\t}\n\n\t\treturn this;\n\t}\n\n\ttrimEnd(charType) {\n\t\tconst rx = new RegExp((charType || '\\\\s') + '+$');\n\n\t\tlet source;\n\t\tlet i = this.sources.length - 1;\n\n\t\tdo {\n\t\t\tsource = this.sources[i--];\n\t\t\tif (!source) {\n\t\t\t\tthis.intro = this.intro.replace(rx, '');\n\t\t\t\tbreak;\n\t\t\t}\n\t\t} while (!source.content.trimEndAborted(charType));\n\n\t\treturn this;\n\t}\n}\n"],"names":["const","let","this"],"mappings":";;AAAe,IAAM,KAAK,GACzB,cAAW,CAAC,KAAK,EAAE,GAAG,EAAE,OAAO,EAAE;CAChC,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC;CACnB,IAAI,CAAC,GAAG,GAAG,GAAG,CAAC;CACf,IAAI,CAAC,QAAQ,GAAG,OAAO,CAAC;;CAExB,IAAI,CAAC,KAAK,GAAG,EAAE,CAAC;CAChB,IAAI,CAAC,KAAK,GAAG,EAAE,CAAC;;CAEhB,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;CACvB,IAAI,CAAC,SAAS,GAAG,KAAK,CAAC;CACvB,IAAI,CAAC,MAAM,GAAG,KAAK,CAAC;;;CAGpB,MAAM,CAAC,gBAAgB,CAAC,IAAI,EAAE;EAC9B,QAAS,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,KAAK,EAAE,IAAI,EAAE;EAC1C,IAAK,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,KAAK,EAAE,IAAI,EAAE;EACzC,CAAC,CAAC;EACH;;AAEF,gBAAC,kCAAW,OAAO,EAAE;CACnB,IAAI,CAAC,KAAK,IAAI,OAAO,CAAC;EACtB;;AAEF,gBAAC,oCAAY,OAAO,EAAE;CACrB,IAAK,CAAC,KAAK,GAAG,IAAI,CAAC,KAAK,GAAG,OAAO,CAAC;EAClC;;AAEF,gBAAC,0BAAQ;CACPA,IAAM,KAAK,GAAG,IAAI,KAAK,CAAC,IAAI,CAAC,KAAK,EAAE,IAAI,CAAC,GAAG,EAAE,IAAI,CAAC,QAAQ,CAAC,CAAC;;CAE7D,KAAK,CAAC,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC;CACzB,KAAK,CAAC,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC;CACzB,KAAK,CAAC,OAAO,GAAG,IAAI,CAAC,OAAO,CAAC;CAC7B,KAAK,CAAC,SAAS,GAAG,IAAI,CAAC,SAAS,CAAC;CACjC,KAAK,CAAC,MAAM,GAAG,IAAI,CAAC,MAAM,CAAC;;CAE5B,OAAQ,KAAK,CAAC;EACb;;AAEF,gBAAC,8BAAS,KAAK,EAAE;CACf,OAAO,IAAI,CAAC,KAAK,GAAG,KAAK,IAAI,KAAK,GAAG,IAAI,CAAC,GAAG,CAAC;EAC9C;;AAEF,gBAAC,8BAAS,EAAE,EAAE;CACZC,IAAI,KAAK,GAAG,IAAI,CAAC;CAClB,OAAQ,KAAK,EAAE;EACb,EAAE,CAAC,KAAK,CAAC,CAAC;EACV,KAAK,GAAG,KAAK,CAAC,IAAI,CAAC;EACnB;EACD;;AAEF,gBAAC,sCAAa,EAAE,EAAE;CAChBA,IAAI,KAAK,GAAG,IAAI,CAAC;CAClB,OAAQ,KAAK,EAAE;EACb,EAAE,CAAC,KAAK,CAAC,CAAC;EACV,KAAK,GAAG,KAAK,CAAC,QAAQ,CAAC;EACvB;EACD;;AAEF,gBAAC,sBAAK,OAAO,EAAE,SAAS,EAAE,WAAW,EAAE;CACrC,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;CACxB,IAAK,CAAC,WAAW,EAAE;EACjB,IAAI,CAAC,KAAK,GAAG,EAAE,CAAC;EAChB,IAAI,CAAC,KAAK,GAAG,EAAE,CAAC;EAChB;CACD,IAAI,CAAC,SAAS,GAAG,SAAS,CAAC;;CAE3B,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;;CAEpB,OAAQ,IAAI,CAAC;EACZ;;AAEF,gBAAC,oCAAY,OAAO,EAAE;CACrB,IAAK,CAAC,KAAK,GAAG,OAAO,GAAG,IAAI,CAAC,KAAK,CAAC;EAClC;;AAEF,gBAAC,sCAAa,OAAO,EAAE;CACtB,IAAK,CAAC,KAAK,GAAG,OAAO,GAAG,IAAI,CAAC,KAAK,CAAC;EAClC;;AAEF,gBAAC,wBAAM,KAAK,EAAE;CACb,IAAO,UAAU,GAAG,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC;;CAEtCD,IAAM,cAAc,GAAG,IAAI,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC,EAAE,UAAU,CAAC,CAAC;CAC1DA,IAAM,aAAa,GAAG,IAAI,CAAC,QAAQ,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC;;CAEtD,IAAI,CAAC,QAAQ,GAAG,cAAc,CAAC;;CAE/BA,IAAM,QAAQ,GAAG,IAAI,KAAK,CAAC,KAAK,EAAE,IAAI,CAAC,GAAG,EAAE,aAAa,CAAC,CAAC;CAC3D,QAAQ,CAAC,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC;CAC5B,IAAI,CAAC,KAAK,GAAG,EAAE,CAAC;;CAEhB,IAAI,CAAC,GAAG,GAAG,KAAK,CAAC;;CAEjB,IAAI,IAAI,CAAC,MAAM,EAAE;;EAEjB,QAAS,CAAC,IAAI,CAAC,EAAE,EAAE,KAAK,CAAC,CAAC;EACzB,IAAI,CAAC,OAAO,GAAG,EAAE,CAAC;EAClB,MAAM;EACN,IAAI,CAAC,OAAO,GAAG,cAAc,CAAC;EAC9B;;CAED,QAAQ,CAAC,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;CAC1B,IAAI,QAAQ,CAAC,IAAI,IAAE,QAAQ,CAAC,IAAI,CAAC,QAAQ,GAAG,QAAQ,GAAC;CACrD,QAAQ,CAAC,QAAQ,GAAG,IAAI,CAAC;CACzB,IAAI,CAAC,IAAI,GAAG,QAAQ,CAAC;;CAEtB,OAAQ,QAAQ,CAAC;EAChB;;AAEF,gBAAC,gCAAW;CACV,OAAO,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC,KAAK,CAAC;EAC9C;;AAEF,gBAAC,4BAAQ,EAAE,EAAE;CACX,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,EAAE,EAAE,EAAE,CAAC,CAAC;CACzC,IAAK,IAAI,CAAC,KAAK,CAAC,MAAM,IAAE,OAAO,IAAI,GAAC;;CAEnCA,IAAM,OAAO,GAAG,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,EAAE,EAAE,EAAE,CAAC,CAAC;;CAE7C,IAAI,OAAO,CAAC,MAAM,EAAE;EACnB,IAAI,OAAO,KAAK,IAAI,CAAC,OAAO,EAAE;GAC9B,IAAK,CAAC,KAAK,CAAC,IAAI,CAAC,KAAK,GAAG,OAAO,CAAC,MAAM,CAAC,CAAC,IAAI,CAAC,EAAE,EAAE,SAAS,EAAE,IAAI,CAAC,CAAC;GAClE;EACF,OAAQ,IAAI,CAAC;;EAEZ,MAAM;EACP,IAAK,CAAC,IAAI,CAAC,EAAE,EAAE,SAAS,EAAE,IAAI,CAAC,CAAC;;EAE/B,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,EAAE,EAAE,EAAE,CAAC,CAAC;EACzC,IAAK,IAAI,CAAC,KAAK,CAAC,MAAM,IAAE,OAAO,IAAI,GAAC;EACnC;EACD;;AAEF,gBAAC,gCAAU,EAAE,EAAE;CACb,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,EAAE,EAAE,EAAE,CAAC,CAAC;CACzC,IAAK,IAAI,CAAC,KAAK,CAAC,MAAM,IAAE,OAAO,IAAI,GAAC;;CAEnCA,IAAM,OAAO,GAAG,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,EAAE,EAAE,EAAE,CAAC,CAAC;;CAE7C,IAAI,OAAO,CAAC,MAAM,EAAE;EACnB,IAAI,OAAO,KAAK,IAAI,CAAC,OAAO,EAAE;GAC7B,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,GAAG,GAAG,OAAO,CAAC,MAAM,CAAC,CAAC;GACvC,IAAK,CAAC,IAAI,CAAC,EAAE,EAAE,SAAS,EAAE,IAAI,CAAC,CAAC;GAC/B;EACF,OAAQ,IAAI,CAAC;;EAEZ,MAAM;EACP,IAAK,CAAC,IAAI,CAAC,EAAE,EAAE,SAAS,EAAE,IAAI,CAAC,CAAC;;EAE/B,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,EAAE,EAAE,EAAE,CAAC,CAAC;EACzC,IAAK,IAAI,CAAC,KAAK,CAAC,MAAM,IAAE,OAAO,IAAI,GAAC;EACnC;CACD;;ACxJFC,IAAI,IAAI,eAAM;CACb,MAAM,IAAI,KAAK,CAAC,yEAAyE,CAAC,CAAC;CAC3F,CAAC;AACF,IAAI,OAAO,MAAM,KAAK,WAAW,IAAI,OAAO,MAAM,CAAC,IAAI,KAAK,UAAU,EAAE;CACvE,IAAI,aAAG,KAAI,SAAG,MAAM,CAAC,IAAI,CAAC,QAAQ,CAAC,kBAAkB,CAAC,GAAG,CAAC,CAAC,IAAC,CAAC;CAC7D,MAAM,IAAI,OAAO,MAAM,KAAK,UAAU,EAAE;CACxC,IAAI,aAAG,KAAI,SAAG,MAAM,CAAC,IAAI,CAAC,GAAG,EAAE,OAAO,CAAC,CAAC,QAAQ,CAAC,QAAQ,IAAC,CAAC;CAC3D;;AAEc,IAAM,SAAS,GAC7B,kBAAW,CAAC,UAAU,EAAE;CACvB,IAAI,CAAC,OAAO,GAAG,CAAC,CAAC;CACjB,IAAI,CAAC,IAAI,GAAG,UAAU,CAAC,IAAI,CAAC;CAC5B,IAAI,CAAC,OAAO,GAAG,UAAU,CAAC,OAAO,CAAC;CAClC,IAAI,CAAC,cAAc,GAAG,UAAU,CAAC,cAAc,CAAC;CAChD,IAAI,CAAC,KAAK,GAAG,UAAU,CAAC,KAAK,CAAC;CAC/B,IAAK,CAAC,QAAQ,GAAG,MAAM,CAAC,UAAU,CAAC,QAAQ,CAAC,CAAC;EAC5C;;AAEF,oBAAC,gCAAW;CACV,OAAO,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,CAAC;EAC5B;;AAEF,oBAAC,0BAAQ;CACR,OAAQ,6CAA6C,GAAG,IAAI,CAAC,IAAI,CAAC,QAAQ,EAAE,CAAC,CAAC;CAC7E;;AC3Ba,SAAS,WAAW,CAAC,IAAI,EAAE;CACzCD,IAAM,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC;;CAE/BA,IAAM,MAAM,GAAG,KAAK,CAAC,MAAM,WAAC,MAAK,SAAG,MAAM,CAAC,IAAI,CAAC,IAAI,IAAC,CAAC,CAAC;CACvDA,IAAM,MAAM,GAAG,KAAK,CAAC,MAAM,WAAC,MAAK,SAAG,QAAQ,CAAC,IAAI,CAAC,IAAI,IAAC,CAAC,CAAC;;CAEzD,IAAI,MAAM,CAAC,MAAM,KAAK,CAAC,IAAI,MAAM,CAAC,MAAM,KAAK,CAAC,EAAE;EAC/C,OAAO,IAAI,CAAC;EACZ;;;;;CAKD,IAAI,MAAM,CAAC,MAAM,IAAI,MAAM,CAAC,MAAM,EAAE;EACnC,OAAO,IAAI,CAAC;EACZ;;;CAGDA,IAAM,GAAG,GAAG,MAAM,CAAC,MAAM,WAAE,QAAQ,EAAE,OAAO,EAAE;EAC7CA,IAAM,SAAS,GAAG,KAAK,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC;EAChD,OAAO,IAAI,CAAC,GAAG,CAAC,SAAS,EAAE,QAAQ,CAAC,CAAC;EACrC,EAAE,QAAQ,CAAC,CAAC;;CAEb,OAAO,IAAI,KAAK,CAAC,GAAG,GAAG,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;CACpC;;ACxBc,SAAS,eAAe,CAAC,IAAI,EAAE,EAAE,EAAE;CACjDA,IAAM,SAAS,GAAG,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC;CACtCA,IAAM,OAAO,GAAG,EAAE,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC;;CAElC,SAAS,CAAC,GAAG,EAAE,CAAC;;CAEhB,OAAO,SAAS,CAAC,CAAC,CAAC,KAAK,OAAO,CAAC,CAAC,CAAC,EAAE;EACnC,SAAS,CAAC,KAAK,EAAE,CAAC;EAClB,OAAO,CAAC,KAAK,EAAE,CAAC;EAChB;;CAED,IAAI,SAAS,CAAC,MAAM,EAAE;EACrBC,IAAI,CAAC,GAAG,SAAS,CAAC,MAAM,CAAC;EACzB,OAAO,CAAC,EAAE,IAAE,SAAS,CAAC,CAAC,CAAC,GAAG,IAAI,GAAC;EAChC;;CAED,OAAO,SAAS,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;CAC3C;;ACjBDD,IAAM,QAAQ,GAAG,MAAM,CAAC,SAAS,CAAC,QAAQ,CAAC;;AAE3C,AAAe,SAAS,QAAQ,CAAC,KAAK,EAAE;CACvC,OAAO,QAAQ,CAAC,IAAI,CAAC,KAAK,CAAC,KAAK,iBAAiB,CAAC;CAClD;;ACJc,SAAS,UAAU,CAAC,MAAM,EAAE;CAC1CA,IAAM,aAAa,GAAG,MAAM,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC;CACzCA,IAAM,WAAW,GAAG,EAAE,CAAC;;CAEvB,KAAKC,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,CAAC,EAAE,CAAC,GAAG,aAAa,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE;EACvD,WAAW,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;EACtB,GAAG,IAAI,aAAa,CAAC,CAAC,CAAC,CAAC,MAAM,GAAG,CAAC,CAAC;EACnC;;CAED,OAAO,SAAS,MAAM,CAAC,KAAK,EAAE;EAC7BA,IAAI,CAAC,GAAG,CAAC,CAAC;EACVA,IAAI,CAAC,GAAG,WAAW,CAAC,MAAM,CAAC;EAC3B,OAAO,CAAC,GAAG,CAAC,EAAE;GACbD,IAAM,CAAC,GAAG,CAAC,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC;GACvB,IAAI,KAAK,GAAG,WAAW,CAAC,CAAC,CAAC,EAAE;IAC3B,CAAC,GAAG,CAAC,CAAC;IACN,MAAM;IACN,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;IACV;GACD;EACDA,IAAM,IAAI,GAAG,CAAC,GAAG,CAAC,CAAC;EACnBA,IAAM,MAAM,GAAG,KAAK,GAAG,WAAW,CAAC,IAAI,CAAC,CAAC;EACzC,OAAO,QAAE,IAAI,UAAE,MAAM,EAAE,CAAC;EACxB,CAAC;CACF;;ACxBc,IAAM,QAAQ,GAC5B,iBAAW,CAAC,KAAK,EAAE;CAClB,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC;CACnB,IAAI,CAAC,iBAAiB,GAAG,CAAC,CAAC;CAC3B,IAAI,CAAC,mBAAmB,GAAG,CAAC,CAAC;CAC7B,IAAI,CAAC,GAAG,GAAG,EAAE,CAAC;CACd,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,iBAAiB,CAAC,GAAG,EAAE,CAAC;CACzD,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;EACpB;;AAEF,mBAAC,4BAAQ,WAAW,EAAE,OAAO,EAAE,GAAG,EAAE,SAAS,EAAE;CAC7C,IAAI,OAAO,CAAC,MAAM,EAAE;EACnBA,IAAM,OAAO,GAAG,CAAC,IAAI,CAAC,mBAAmB,EAAE,WAAW,EAAE,GAAG,CAAC,IAAI,EAAE,GAAG,CAAC,MAAM,CAAC,CAAC;EAC9E,IAAI,SAAS,IAAI,CAAC,EAAE;GACnB,OAAO,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;GACxB;EACF,IAAK,CAAC,WAAW,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;EAC/B,MAAM,IAAI,IAAI,CAAC,OAAO,EAAE;EACzB,IAAK,CAAC,WAAW,CAAC,IAAI,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;EACpC;;CAED,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC;CACtB,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;EACpB;;AAEF,mBAAC,8CAAiB,WAAW,EAAE,KAAK,EAAE,QAAQ,EAAE,GAAG,EAAE,kBAAkB,EAAE;CACvEC,IAAI,iBAAiB,GAAG,KAAK,CAAC,KAAK,CAAC;CACpCA,IAAI,KAAK,GAAG,IAAI,CAAC;;CAEjB,OAAO,iBAAiB,GAAG,KAAK,CAAC,GAAG,EAAE;EACtC,IAAK,IAAI,CAAC,KAAK,IAAI,KAAK,IAAI,kBAAkB,CAAC,iBAAiB,CAAC,EAAE;GAClE,IAAK,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,mBAAmB,EAAE,WAAW,EAAE,GAAG,CAAC,IAAI,EAAE,GAAG,CAAC,MAAM,CAAC,CAAC,CAAC;GACrF;;EAED,IAAI,QAAQ,CAAC,iBAAiB,CAAC,KAAK,IAAI,EAAE;GACzC,GAAG,CAAC,IAAI,IAAI,CAAC,CAAC;GACd,GAAG,CAAC,MAAM,GAAG,CAAC,CAAC;GACf,IAAI,CAAC,iBAAiB,IAAI,CAAC,CAAC;GAC5B,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,iBAAiB,CAAC,GAAG,IAAI,CAAC,WAAW,GAAG,EAAE,CAAC;GACzD,IAAI,CAAC,mBAAmB,GAAG,CAAC,CAAC;GAC7B,MAAM;GACN,GAAG,CAAC,MAAM,IAAI,CAAC,CAAC;GAChB,IAAI,CAAC,mBAAmB,IAAI,CAAC,CAAC;GAC9B;;EAEF,iBAAkB,IAAI,CAAC,CAAC;EACxB,KAAM,GAAG,KAAK,CAAC;EACd;;CAED,IAAI,CAAC,OAAO,GAAG,CAAC,IAAI,CAAC,mBAAmB,EAAE,WAAW,EAAE,GAAG,CAAC,IAAI,EAAE,GAAG,CAAC,MAAM,CAAC,CAAC;EAC7E;;AAEF,mBAAC,4BAAQ,GAAG,EAAE;CACZ,IAAI,CAAC,GAAG,IAAE,SAAO;;CAElB,IAAO,KAAK,GAAG,GAAG,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC;;CAE9B,IAAI,KAAK,CAAC,MAAM,GAAG,CAAC,EAAE;EACrB,KAAKA,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,KAAK,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC,EAAE,EAAE;GAC1C,IAAI,CAAC,iBAAiB,EAAE,CAAC;GACzB,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,iBAAiB,CAAC,GAAG,IAAI,CAAC,WAAW,GAAG,EAAE,CAAC;GACzD;EACD,IAAI,CAAC,mBAAmB,GAAG,CAAC,CAAC;EAC7B;;CAED,IAAI,CAAC,mBAAmB,IAAI,KAAK,CAAC,KAAK,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,MAAM,CAAC;CAC3D;;ACzDFD,IAAM,CAAC,GAAG,IAAI,CAAC;;AAEfA,IAAM,MAAM,GAAG;CACd,UAAU,EAAE,KAAK;CACjB,WAAW,EAAE,KAAK;CAClB,SAAS,EAAE,KAAK;CAChB,CAAC;;AAEF,IAAqB,WAAW,GAC/B,oBAAW,CAAC,MAAM,EAAE,OAAY,EAAE;kCAAP,GAAG;;CAC7BA,IAAM,KAAK,GAAG,IAAI,KAAK,CAAC,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;;CAElD,MAAM,CAAC,gBAAgB,CAAC,IAAI,EAAE;EAC9B,QAAS,eAAe,EAAE,QAAQ,EAAE,IAAI,EAAE,KAAK,EAAE,MAAM,EAAE;EACzD,KAAM,kBAAkB,EAAE,QAAQ,EAAE,IAAI,EAAE,KAAK,EAAE,EAAE,EAAE;EACrD,KAAM,kBAAkB,EAAE,QAAQ,EAAE,IAAI,EAAE,KAAK,EAAE,EAAE,EAAE;EACrD,UAAW,aAAa,EAAE,QAAQ,EAAE,IAAI,EAAE,KAAK,EAAE,KAAK,EAAE;EACxD,SAAU,cAAc,EAAE,QAAQ,EAAE,IAAI,EAAE,KAAK,EAAE,KAAK,EAAE;EACxD,iBAAkB,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,KAAK,EAAE,KAAK,EAAE;EACxD,OAAQ,gBAAgB,EAAE,QAAQ,EAAE,IAAI,EAAE,KAAK,EAAE,EAAE,EAAE;EACrD,KAAM,kBAAkB,EAAE,QAAQ,EAAE,IAAI,EAAE,KAAK,EAAE,EAAE,EAAE;EACpD,QAAQ,eAAe,EAAE,QAAQ,EAAE,IAAI,EAAE,KAAK,EAAE,OAAO,CAAC,QAAQ,EAAE;EAClE,qBAAqB,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,KAAK,EAAE,OAAO,CAAC,qBAAqB,EAAE;EAChF,kBAAmB,KAAK,EAAE,QAAQ,EAAE,IAAI,EAAE,KAAK,EAAE,EAAE,EAAE;EACrD,WAAY,YAAY,EAAE,QAAQ,EAAE,IAAI,EAAE,KAAK,EAAE,EAAE,EAAE;EACpD,SAAS,cAAc,EAAE,QAAQ,EAAE,IAAI,EAAE,KAAK,EAAE,WAAW,CAAC,MAAM,CAAC,EAAE;EACrE,CAAC,CAAC;;CAMJ,IAAK,CAAC,OAAO,CAAC,CAAC,CAAC,GAAG,KAAK,CAAC;CACzB,IAAK,CAAC,KAAK,CAAC,MAAM,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC;EAClC;;AAEF,sBAAC,sDAAqB,IAAI,EAAE;CAC3B,IAAK,CAAC,kBAAkB,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC;EACrC;;AAEF,sBAAC,0BAAO,OAAO,EAAE;CACf,IAAI,OAAO,OAAO,KAAK,QAAQ,IAAE,MAAM,IAAI,SAAS,CAAC,gCAAgC,CAAC,GAAC;;CAEvF,IAAI,CAAC,KAAK,IAAI,OAAO,CAAC;CACvB,OAAQ,IAAI,CAAC;EACZ;;AAEF,sBAAC,kCAAW,KAAK,EAAE,OAAO,EAAE;CAC1B,IAAI,OAAO,OAAO,KAAK,QAAQ,IAAE,MAAM,IAAI,SAAS,CAAC,mCAAmC,CAAC,GAAC;;CAI1F,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;;CAEpB,IAAO,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC;;CAEjC,IAAK,KAAK,EAAE;EACV,KAAK,CAAC,UAAU,CAAC,OAAO,CAAC,CAAC;EAC1B,MAAM;EACN,IAAI,CAAC,KAAK,IAAI,OAAO,CAAC;EACtB;CAGF,OAAQ,IAAI,CAAC;EACZ;;AAEF,sBAAC,oCAAY,KAAK,EAAE,OAAO,EAAE;CAC3B,IAAI,OAAO,OAAO,KAAK,QAAQ,IAAE,MAAM,IAAI,SAAS,CAAC,mCAAmC,CAAC,GAAC;;CAI1F,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;;CAEpB,IAAO,KAAK,GAAG,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC;;CAEnC,IAAK,KAAK,EAAE;EACV,KAAK,CAAC,WAAW,CAAC,OAAO,CAAC,CAAC;EAC3B,MAAM;EACN,IAAI,CAAC,KAAK,IAAI,OAAO,CAAC;EACtB;CAGF,OAAQ,IAAI,CAAC;EACZ;;AAEF,sBAAC,0BAAQ;CACPA,IAAM,MAAM,GAAG,IAAI,WAAW,CAAC,IAAI,CAAC,QAAQ,EAAE,EAAE,QAAQ,EAAE,IAAI,CAAC,QAAQ,EAAE,CAAC,CAAC;;CAE3EC,IAAI,aAAa,GAAG,IAAI,CAAC,UAAU,CAAC;CACpCA,IAAI,WAAW,IAAI,MAAM,CAAC,UAAU,GAAG,MAAM,CAAC,iBAAiB,GAAG,aAAa,CAAC,KAAK,EAAE,CAAC,CAAC;;CAE1F,OAAQ,aAAa,EAAE;EACtB,MAAO,CAAC,OAAO,CAAC,WAAW,CAAC,KAAK,CAAC,GAAG,WAAW,CAAC;EACjD,MAAO,CAAC,KAAK,CAAC,WAAW,CAAC,GAAG,CAAC,GAAG,WAAW,CAAC;;EAE5CD,IAAM,iBAAiB,GAAG,aAAa,CAAC,IAAI,CAAC;EAC9C,IAAO,eAAe,GAAG,iBAAiB,IAAI,iBAAiB,CAAC,KAAK,EAAE,CAAC;;EAExE,IAAK,eAAe,EAAE;GACpB,WAAW,CAAC,IAAI,GAAG,eAAe,CAAC;GACnC,eAAe,CAAC,QAAQ,GAAG,WAAW,CAAC;;GAExC,WAAY,GAAG,eAAe,CAAC;GAC9B;;EAEF,aAAc,GAAG,iBAAiB,CAAC;EAClC;;CAED,MAAM,CAAC,SAAS,GAAG,WAAW,CAAC;;CAE/B,IAAI,IAAI,CAAC,qBAAqB,EAAE;EAChC,MAAO,CAAC,qBAAqB,GAAG,IAAI,CAAC,qBAAqB,CAAC,KAAK,EAAE,CAAC;EAClE;;CAED,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAC,OAAO,WAAC,KAAI;EACjD,MAAO,CAAC,kBAAkB,CAAC,GAAG,CAAC,GAAG,IAAI,CAAC;EACtC,CAAC,CAAC;;CAEJ,OAAQ,MAAM,CAAC;EACd;;AAEF,sBAAC,kDAAmB,OAAO,EAAE;;;CAC3B,OAAO,GAAG,OAAO,IAAI,EAAE,CAAC;;CAExBA,IAAM,WAAW,GAAG,CAAC,CAAC;CACtBA,IAAM,KAAK,GAAG,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC;CAC7C,IAAO,QAAQ,GAAG,IAAI,QAAQ,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC;;CAE9C,IAAO,MAAM,GAAG,UAAU,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC;;CAEzC,IAAI,IAAI,CAAC,KAAK,EAAE;EAChB,QAAS,CAAC,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;EAC7B;;CAEF,IAAK,CAAC,UAAU,CAAC,QAAQ,WAAC,OAAM;EAC/B,IAAO,GAAG,GAAG,MAAM,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC;;EAEhC,IAAI,KAAK,CAAC,KAAK,CAAC,MAAM,IAAE,QAAQ,CAAC,OAAO,CAAC,KAAK,CAAC,KAAK,CAAC,GAAC;;EAEtD,IAAI,KAAK,CAAC,MAAM,EAAE;GAClB,QAAS,CAAC,OAAO;IACf,WAAW;IACZ,KAAM,CAAC,OAAO;IACb,GAAG;IACH,KAAK,CAAC,SAAS,GAAG,KAAK,CAAC,OAAO,CAAC,KAAK,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC;IACpD,CAAC;GACF,MAAM;GACN,QAAQ,CAAC,gBAAgB,CAAC,WAAW,EAAE,KAAK,EAAEE,MAAI,CAAC,QAAQ,EAAE,GAAG,EAAEA,MAAI,CAAC,kBAAkB,CAAC,CAAC;GAC3F;;EAED,IAAI,KAAK,CAAC,KAAK,CAAC,MAAM,IAAE,QAAQ,CAAC,OAAO,CAAC,KAAK,CAAC,KAAK,CAAC,GAAC;EACtD,CAAC,CAAC;;CAEH,OAAO;EACN,IAAI,EAAE,OAAO,CAAC,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,GAAG,EAAE,GAAG,IAAI;EAC9D,OAAQ,EAAE,CAAC,OAAO,CAAC,MAAM,GAAG,eAAe,CAAC,OAAO,CAAC,IAAI,IAAI,EAAE,EAAE,OAAO,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC;EACtF,cAAc,EAAE,OAAO,CAAC,cAAc,GAAG,CAAC,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,IAAI,CAAC;EAClE,OAAC,KAAK;EACL,QAAQ,EAAE,QAAQ,CAAC,GAAG;EACtB,CAAC;EACF;;AAEF,sBAAC,oCAAY,OAAO,EAAE;CACrB,OAAQ,IAAI,SAAS,CAAC,IAAI,CAAC,kBAAkB,CAAC,OAAO,CAAC,CAAC,CAAC;EACvD;;AAEF,sBAAC,8CAAkB;CACjB,OAAO,IAAI,CAAC,SAAS,KAAK,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC,SAAS,CAAC;EACvD;;AAEF,sBAAC,0BAAO,SAAS,EAAE,OAAO,EAAE;CAC1BF,IAAM,OAAO,GAAG,YAAY,CAAC;;CAE7B,IAAI,QAAQ,CAAC,SAAS,CAAC,EAAE;EACzB,OAAQ,GAAG,SAAS,CAAC;EACrB,SAAU,GAAG,SAAS,CAAC;EACtB;;CAED,SAAS,GAAG,SAAS,KAAK,SAAS,GAAG,SAAS,GAAG,IAAI,CAAC,SAAS,IAAI,IAAI,CAAC;;CAEzE,IAAI,SAAS,KAAK,EAAE,IAAE,OAAO,IAAI,GAAC;;CAElC,OAAO,GAAG,OAAO,IAAI,EAAE,CAAC;;;CAGxBA,IAAM,UAAU,GAAG,EAAE,CAAC;;CAEtB,IAAI,OAAO,CAAC,OAAO,EAAE;EACrB,IAAO,UAAU;GACf,OAAO,OAAO,CAAC,OAAO,CAAC,CAAC,CAAC,KAAK,QAAQ,GAAG,CAAC,OAAO,CAAC,OAAO,CAAC,GAAG,OAAO,CAAC,OAAO,CAAC;EAC9E,UAAU,CAAC,OAAO,WAAC,WAAU;GAC7B,KAAMC,IAAI,CAAC,GAAG,SAAS,CAAC,CAAC,CAAC,EAAE,CAAC,GAAG,SAAS,CAAC,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,EAAE;IACpD,UAAU,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC;IACrB;GACD,CAAC,CAAC;EACH;;CAEF,IAAK,yBAAyB,GAAG,OAAO,CAAC,WAAW,KAAK,KAAK,CAAC;CAC9DD,IAAM,QAAQ,aAAG,OAAM;EACvB,IAAK,yBAAyB,IAAE,aAAU,SAAS,GAAG,KAAK,IAAG;EAC9D,yBAA0B,GAAG,IAAI,CAAC;EAClC,OAAQ,KAAK,CAAC;EACb,CAAC;;CAEF,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,OAAO,EAAE,QAAQ,CAAC,CAAC;;CAEnDC,IAAI,SAAS,GAAG,CAAC,CAAC;CAClBA,IAAI,KAAK,GAAG,IAAI,CAAC,UAAU,CAAC;;CAE7B,OAAQ,KAAK,EAAE;EACbD,IAAM,GAAG,GAAG,KAAK,CAAC,GAAG,CAAC;;EAEtB,IAAI,KAAK,CAAC,MAAM,EAAE;GACjB,IAAI,CAAC,UAAU,CAAC,SAAS,CAAC,EAAE;IAC3B,KAAK,CAAC,OAAO,GAAG,KAAK,CAAC,OAAO,CAAC,OAAO,CAAC,OAAO,EAAE,QAAQ,CAAC,CAAC;;IAEzD,IAAI,KAAK,CAAC,OAAO,CAAC,MAAM,EAAE;KACzB,yBAAyB,GAAG,KAAK,CAAC,OAAO,CAAC,KAAK,CAAC,OAAO,CAAC,MAAM,GAAG,CAAC,CAAC,KAAK,IAAI,CAAC;KAC7E;IACD;GACD,MAAM;GACN,SAAS,GAAG,KAAK,CAAC,KAAK,CAAC;;GAExB,OAAO,SAAS,GAAG,GAAG,EAAE;IACvB,IAAI,CAAC,UAAU,CAAC,SAAS,CAAC,EAAE;KAC5B,IAAO,IAAI,GAAG,IAAI,CAAC,QAAQ,CAAC,SAAS,CAAC,CAAC;;KAEtC,IAAI,IAAI,KAAK,IAAI,EAAE;MACnB,yBAA0B,GAAG,IAAI,CAAC;MACjC,MAAM,IAAI,IAAI,KAAK,IAAI,IAAI,yBAAyB,EAAE;MACvD,yBAA0B,GAAG,KAAK,CAAC;;MAElC,IAAI,SAAS,KAAK,KAAK,CAAC,KAAK,EAAE;OAC9B,KAAK,CAAC,YAAY,CAAC,SAAS,CAAC,CAAC;OAC9B,MAAM;OACP,IAAK,CAAC,WAAW,CAAC,KAAK,EAAE,SAAS,CAAC,CAAC;OACnC,KAAK,GAAG,KAAK,CAAC,IAAI,CAAC;OACnB,KAAK,CAAC,YAAY,CAAC,SAAS,CAAC,CAAC;OAC9B;MACD;KACD;;IAEF,SAAU,IAAI,CAAC,CAAC;IACf;GACD;;EAED,SAAS,GAAG,KAAK,CAAC,GAAG,CAAC;EACtB,KAAK,GAAG,KAAK,CAAC,IAAI,CAAC;EACnB;;CAED,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,OAAO,EAAE,QAAQ,CAAC,CAAC;;CAEpD,OAAQ,IAAI,CAAC;EACZ;;AAEF,sBAAC,4BAAS;CACR,MAAM,IAAI,KAAK,CAAC,iFAAiF,CAAC,CAAC;EACnG;;AAEF,sBAAC,kCAAW,KAAK,EAAE,OAAO,EAAE;CAC1B,IAAI,CAAC,MAAM,CAAC,UAAU,EAAE;EACvB,OAAO,CAAC,IAAI,CAAC,oFAAoF,CAAC,CAAC;EACnG,MAAM,CAAC,UAAU,GAAG,IAAI,CAAC;EACzB;;CAEF,OAAQ,IAAI,CAAC,UAAU,CAAC,KAAK,EAAE,OAAO,CAAC,CAAC;EACvC;;AAEF,sBAAC,oCAAY,KAAK,EAAE,OAAO,EAAE;CAC3B,IAAI,CAAC,MAAM,CAAC,WAAW,EAAE;EACxB,OAAO,CAAC,IAAI,CAAC,uFAAuF,CAAC,CAAC;EACtG,MAAM,CAAC,WAAW,GAAG,IAAI,CAAC;EAC1B;;CAEF,OAAQ,IAAI,CAAC,YAAY,CAAC,KAAK,EAAE,OAAO,CAAC,CAAC;EACzC;;AAEF,sBAAC,sBAAK,KAAK,EAAE,GAAG,EAAE,KAAK,EAAE;CACvB,IAAI,KAAK,IAAI,KAAK,IAAI,KAAK,IAAI,GAAG,IAAE,MAAM,IAAI,KAAK,CAAC,uCAAuC,CAAC,GAAC;;CAI7F,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;CACnB,IAAI,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC;CACjB,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;;CAEpB,IAAO,KAAK,GAAG,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC;CACnC,IAAO,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;;CAE7BA,IAAM,OAAO,GAAG,KAAK,CAAC,QAAQ,CAAC;CAC/BA,IAAM,QAAQ,GAAG,IAAI,CAAC,IAAI,CAAC;;CAE5B,IAAO,QAAQ,GAAG,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC;CACrC,IAAI,CAAC,QAAQ,IAAI,IAAI,KAAK,IAAI,CAAC,SAAS,IAAE,OAAO,IAAI,GAAC;CACtDA,IAAM,OAAO,GAAG,QAAQ,GAAG,QAAQ,CAAC,QAAQ,GAAG,IAAI,CAAC,SAAS,CAAC;;CAE/D,IAAK,OAAO,IAAE,OAAO,CAAC,IAAI,GAAG,QAAQ,GAAC;CACtC,IAAK,QAAQ,IAAE,QAAQ,CAAC,QAAQ,GAAG,OAAO,GAAC;;CAE3C,IAAK,OAAO,IAAE,OAAO,CAAC,IAAI,GAAG,KAAK,GAAC;CACnC,IAAK,QAAQ,IAAE,QAAQ,CAAC,QAAQ,GAAG,IAAI,GAAC;;CAEvC,IAAI,CAAC,KAAK,CAAC,QAAQ,IAAE,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC,IAAI,GAAC;CACjD,IAAI,CAAC,IAAI,CAAC,IAAI,EAAE;EACf,IAAI,CAAC,SAAS,GAAG,KAAK,CAAC,QAAQ,CAAC;EAChC,IAAI,CAAC,SAAS,CAAC,IAAI,GAAG,IAAI,CAAC;EAC3B;;CAED,KAAK,CAAC,QAAQ,GAAG,OAAO,CAAC;CACzB,IAAI,CAAC,IAAI,GAAG,QAAQ,IAAI,IAAI,CAAC;;CAE9B,IAAK,CAAC,OAAO,IAAE,IAAI,CAAC,UAAU,GAAG,KAAK,GAAC;CACvC,IAAK,CAAC,QAAQ,IAAE,IAAI,CAAC,SAAS,GAAG,IAAI,GAAC;CAGtC,OAAQ,IAAI,CAAC;EACZ;;AAEF,sBAAC,gCAAU,KAAK,EAAE,GAAG,EAAE,OAAO,EAAE,OAAO,EAAE;CACvC,IAAI,OAAO,OAAO,KAAK,QAAQ,IAAE,MAAM,IAAI,SAAS,CAAC,sCAAsC,CAAC,GAAC;;CAE7F,OAAO,KAAK,GAAG,CAAC,IAAE,KAAK,IAAI,IAAI,CAAC,QAAQ,CAAC,MAAM,GAAC;CAChD,OAAO,GAAG,GAAG,CAAC,IAAE,GAAG,IAAI,IAAI,CAAC,QAAQ,CAAC,MAAM,GAAC;;CAE5C,IAAI,GAAG,GAAG,IAAI,CAAC,QAAQ,CAAC,MAAM,IAAE,MAAM,IAAI,KAAK,CAAC,sBAAsB,CAAC,GAAC;CACzE,IAAK,KAAK,KAAK,GAAG;EACjB,EAAC,MAAM,IAAI,KAAK,CAAC,+EAA+E,CAAC,GAAC;;CAIlG,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;CACnB,IAAI,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC;;CAEjB,IAAI,OAAO,KAAK,IAAI,EAAE;EACrB,IAAI,CAAC,MAAM,CAAC,SAAS,EAAE;GACtB,OAAO,CAAC,IAAI,CAAC,+HAA+H,CAAC,CAAC;GAC9I,MAAM,CAAC,SAAS,GAAG,IAAI,CAAC;GACxB;;EAED,OAAO,GAAG,EAAE,SAAS,EAAE,IAAI,EAAE,CAAC;EAC9B;CACDA,IAAM,SAAS,GAAG,OAAO,KAAK,SAAS,GAAG,OAAO,CAAC,SAAS,GAAG,KAAK,CAAC;CACpEA,IAAM,WAAW,GAAG,OAAO,KAAK,SAAS,GAAG,OAAO,CAAC,WAAW,GAAG,KAAK,CAAC;;CAEzE,IAAK,SAAS,EAAE;EACdA,IAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,KAAK,CAAC,KAAK,EAAE,GAAG,CAAC,CAAC;EAClD,IAAK,CAAC,WAAW,CAAC,QAAQ,CAAC,GAAG,IAAI,CAAC;EAClC;;CAEF,IAAO,KAAK,GAAG,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC;CACnC,IAAO,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;;CAE9B,IAAK,KAAK,EAAE;EACV,IAAI,GAAG,GAAG,KAAK,CAAC,GAAG,IAAI,KAAK,CAAC,IAAI,KAAK,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,GAAG,CAAC,EAAE;GAC9D,MAAM,IAAI,KAAK,CAAC,uCAAuC,CAAC,CAAC;GACzD;;EAEF,KAAM,CAAC,IAAI,CAAC,OAAO,EAAE,SAAS,EAAE,WAAW,CAAC,CAAC;;EAE5C,IAAI,KAAK,KAAK,IAAI,EAAE;GACnBC,IAAI,KAAK,GAAG,KAAK,CAAC,IAAI,CAAC;GACvB,OAAO,KAAK,KAAK,IAAI,EAAE;IACvB,KAAM,CAAC,IAAI,CAAC,EAAE,EAAE,KAAK,CAAC,CAAC;IACtB,KAAK,GAAG,KAAK,CAAC,IAAI,CAAC;IACnB;;GAEF,KAAM,CAAC,IAAI,CAAC,EAAE,EAAE,KAAK,CAAC,CAAC;GACtB;EACD,MAAM;;EAEP,IAAO,QAAQ,GAAG,IAAI,KAAK,CAAC,KAAK,EAAE,GAAG,EAAE,EAAE,CAAC,CAAC,IAAI,CAAC,OAAO,EAAE,SAAS,CAAC,CAAC;;;EAGpE,IAAI,CAAC,IAAI,GAAG,QAAQ,CAAC;EACrB,QAAQ,CAAC,QAAQ,GAAG,IAAI,CAAC;EACzB;CAGF,OAAQ,IAAI,CAAC;EACZ;;AAEF,sBAAC,4BAAQ,OAAO,EAAE;CAChB,IAAI,OAAO,OAAO,KAAK,QAAQ,IAAE,MAAM,IAAI,SAAS,CAAC,gCAAgC,CAAC,GAAC;;CAExF,IAAK,CAAC,KAAK,GAAG,OAAO,GAAG,IAAI,CAAC,KAAK,CAAC;CACnC,OAAQ,IAAI,CAAC;EACZ;;AAEF,sBAAC,oCAAY,KAAK,EAAE,OAAO,EAAE;CAC3B,IAAI,OAAO,OAAO,KAAK,QAAQ,IAAE,MAAM,IAAI,SAAS,CAAC,mCAAmC,CAAC,GAAC;;CAI1F,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;;CAEpB,IAAO,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC;;CAEjC,IAAK,KAAK,EAAE;EACV,KAAK,CAAC,WAAW,CAAC,OAAO,CAAC,CAAC;EAC3B,MAAM;EACP,IAAK,CAAC,KAAK,GAAG,OAAO,GAAG,IAAI,CAAC,KAAK,CAAC;EAClC;CAGF,OAAQ,IAAI,CAAC;EACZ;;AAEF,sBAAC,sCAAa,KAAK,EAAE,OAAO,EAAE;CAC5B,IAAI,OAAO,OAAO,KAAK,QAAQ,IAAE,MAAM,IAAI,SAAS,CAAC,mCAAmC,CAAC,GAAC;;CAI1F,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;;CAEpB,IAAO,KAAK,GAAG,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC;;CAEnC,IAAK,KAAK,EAAE;EACV,KAAK,CAAC,YAAY,CAAC,OAAO,CAAC,CAAC;EAC5B,MAAM;EACP,IAAK,CAAC,KAAK,GAAG,OAAO,GAAG,IAAI,CAAC,KAAK,CAAC;EAClC;CAGF,OAAQ,IAAI,CAAC;EACZ;;AAEF,sBAAC,0BAAO,KAAK,EAAE,GAAG,EAAE;CAClB,OAAO,KAAK,GAAG,CAAC,IAAE,KAAK,IAAI,IAAI,CAAC,QAAQ,CAAC,MAAM,GAAC;CAChD,OAAO,GAAG,GAAG,CAAC,IAAE,GAAG,IAAI,IAAI,CAAC,QAAQ,CAAC,MAAM,GAAC;;CAE5C,IAAI,KAAK,KAAK,GAAG,IAAE,OAAO,IAAI,GAAC;;CAE/B,IAAI,KAAK,GAAG,CAAC,IAAI,GAAG,GAAG,IAAI,CAAC,QAAQ,CAAC,MAAM,IAAE,MAAM,IAAI,KAAK,CAAC,4BAA4B,CAAC,GAAC;CAC5F,IAAK,KAAK,GAAG,GAAG,IAAE,MAAM,IAAI,KAAK,CAAC,gCAAgC,CAAC,GAAC;;CAInE,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;CACnB,IAAI,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC;;CAElB,IAAK,KAAK,GAAG,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC;;CAEjC,OAAQ,KAAK,EAAE;EACb,KAAK,CAAC,KAAK,GAAG,EAAE,CAAC;EACjB,KAAK,CAAC,KAAK,GAAG,EAAE,CAAC;EACjB,KAAK,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC;;EAEf,KAAK,GAAG,GAAG,GAAG,KAAK,CAAC,GAAG,GAAG,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,GAAG,CAAC,GAAG,IAAI,CAAC;EACzD;CAGF,OAAQ,IAAI,CAAC;EACZ;;AAEF,sBAAC,gCAAW;CACV,IAAI,IAAI,CAAC,KAAK,CAAC,MAAM;EACrB,EAAC,OAAO,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,KAAK,CAAC,MAAM,GAAG,CAAC,CAAC,GAAC;CAC1CA,IAAI,KAAK,GAAG,IAAI,CAAC,SAAS,CAAC;CAC3B,GAAG;EACF,IAAI,KAAK,CAAC,KAAK,CAAC,MAAM;GACtB,EAAC,OAAO,KAAK,CAAC,KAAK,CAAC,KAAK,CAAC,KAAK,CAAC,MAAM,GAAG,CAAC,CAAC,GAAC;EAC5C,IAAI,KAAK,CAAC,OAAO,CAAC,MAAM;GACxB,EAAC,OAAO,KAAK,CAAC,OAAO,CAAC,KAAK,CAAC,OAAO,CAAC,MAAM,GAAG,CAAC,CAAC,GAAC;EAChD,IAAI,KAAK,CAAC,KAAK,CAAC,MAAM;GACtB,EAAC,OAAO,KAAK,CAAC,KAAK,CAAC,KAAK,CAAC,KAAK,CAAC,MAAM,GAAG,CAAC,CAAC,GAAC;EAC5C,QAAQ,KAAK,GAAG,KAAK,CAAC,QAAQ,EAAE;CACjC,IAAI,IAAI,CAAC,KAAK,CAAC,MAAM;EACrB,EAAC,OAAO,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,KAAK,CAAC,MAAM,GAAG,CAAC,CAAC,GAAC;CAC3C,OAAQ,EAAE,CAAC;EACV;;AAEF,sBAAC,gCAAW;CACVA,IAAI,SAAS,GAAG,IAAI,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC;CAC1C,IAAI,SAAS,KAAK,CAAC,CAAC;EACpB,EAAC,OAAO,IAAI,CAAC,KAAK,CAAC,MAAM,CAAC,SAAS,GAAG,CAAC,CAAC,GAAC;CACzCA,IAAI,OAAO,GAAG,IAAI,CAAC,KAAK,CAAC;CACzBA,IAAI,KAAK,GAAG,IAAI,CAAC,SAAS,CAAC;CAC3B,GAAG;EACH,IAAK,KAAK,CAAC,KAAK,CAAC,MAAM,GAAG,CAAC,EAAE;GAC5B,SAAU,GAAG,KAAK,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC;GACvC,IAAI,SAAS,KAAK,CAAC,CAAC;IACpB,EAAC,OAAO,KAAK,CAAC,KAAK,CAAC,MAAM,CAAC,SAAS,GAAG,CAAC,CAAC,GAAG,OAAO,GAAC;GACpD,OAAO,GAAG,KAAK,CAAC,KAAK,GAAG,OAAO,CAAC;GAChC;;EAEF,IAAK,KAAK,CAAC,OAAO,CAAC,MAAM,GAAG,CAAC,EAAE;GAC9B,SAAU,GAAG,KAAK,CAAC,OAAO,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC;GACzC,IAAI,SAAS,KAAK,CAAC,CAAC;IACpB,EAAC,OAAO,KAAK,CAAC,OAAO,CAAC,MAAM,CAAC,SAAS,GAAG,CAAC,CAAC,GAAG,OAAO,GAAC;GACtD,OAAO,GAAG,KAAK,CAAC,OAAO,GAAG,OAAO,CAAC;GAClC;;EAEF,IAAK,KAAK,CAAC,KAAK,CAAC,MAAM,GAAG,CAAC,EAAE;GAC5B,SAAU,GAAG,KAAK,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC;GACvC,IAAI,SAAS,KAAK,CAAC,CAAC;IACpB,EAAC,OAAO,KAAK,CAAC,KAAK,CAAC,MAAM,CAAC,SAAS,GAAG,CAAC,CAAC,GAAG,OAAO,GAAC;GACpD,OAAO,GAAG,KAAK,CAAC,KAAK,GAAG,OAAO,CAAC;GAChC;EACD,QAAQ,KAAK,GAAG,KAAK,CAAC,QAAQ,EAAE;CAClC,SAAU,GAAG,IAAI,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC;CACtC,IAAI,SAAS,KAAK,CAAC,CAAC;EACpB,EAAC,OAAO,IAAI,CAAC,KAAK,CAAC,MAAM,CAAC,SAAS,GAAG,CAAC,CAAC,GAAG,OAAO,GAAC;CACnD,OAAO,IAAI,CAAC,KAAK,GAAG,OAAO,CAAC;EAC5B;;AAEF,sBAAC,wBAAM,KAAS,EAAE,GAA0B,EAAE;+BAAlC,GAAG;2BAAM,GAAG,IAAI,CAAC,QAAQ,CAAC;;CACpC,OAAO,KAAK,GAAG,CAAC,IAAE,KAAK,IAAI,IAAI,CAAC,QAAQ,CAAC,MAAM,GAAC;CAChD,OAAO,GAAG,GAAG,CAAC,IAAE,GAAG,IAAI,IAAI,CAAC,QAAQ,CAAC,MAAM,GAAC;;CAE5CA,IAAI,MAAM,GAAG,EAAE,CAAC;;;CAGhBA,IAAI,KAAK,GAAG,IAAI,CAAC,UAAU,CAAC;CAC5B,OAAO,KAAK,KAAK,KAAK,CAAC,KAAK,GAAG,KAAK,IAAI,KAAK,CAAC,GAAG,IAAI,KAAK,CAAC,EAAE;;EAE5D,IAAI,KAAK,CAAC,KAAK,GAAG,GAAG,IAAI,KAAK,CAAC,GAAG,IAAI,GAAG,EAAE;GAC3C,OAAQ,MAAM,CAAC;GACd;;EAED,KAAK,GAAG,KAAK,CAAC,IAAI,CAAC;EACnB;;CAEF,IAAK,KAAK,IAAI,KAAK,CAAC,MAAM,IAAI,KAAK,CAAC,KAAK,KAAK,KAAK;EAClD,EAAC,MAAM,IAAI,KAAK,qCAAkC,KAAK,8BAA0B,GAAC;;CAElFD,IAAM,UAAU,GAAG,KAAK,CAAC;CAC1B,OAAQ,KAAK,EAAE;EACb,IAAI,KAAK,CAAC,KAAK,KAAK,UAAU,KAAK,KAAK,IAAI,KAAK,CAAC,KAAK,KAAK,KAAK,CAAC,EAAE;GACnE,MAAM,IAAI,KAAK,CAAC,KAAK,CAAC;GACtB;;EAEDA,IAAM,WAAW,GAAG,KAAK,CAAC,KAAK,GAAG,GAAG,IAAI,KAAK,CAAC,GAAG,IAAI,GAAG,CAAC;EAC3D,IAAK,WAAW,IAAI,KAAK,CAAC,MAAM,IAAI,KAAK,CAAC,GAAG,KAAK,GAAG;GACpD,EAAC,MAAM,IAAI,KAAK,qCAAkC,GAAG,4BAAwB,GAAC;;EAE9EA,IAAM,UAAU,GAAG,UAAU,KAAK,KAAK,GAAG,KAAK,GAAG,KAAK,CAAC,KAAK,GAAG,CAAC,CAAC;EACnE,IAAO,QAAQ,GAAG,WAAW,GAAG,KAAK,CAAC,OAAO,CAAC,MAAM,GAAG,GAAG,GAAG,KAAK,CAAC,GAAG,GAAG,KAAK,CAAC,OAAO,CAAC,MAAM,CAAC;;EAE7F,MAAM,IAAI,KAAK,CAAC,OAAO,CAAC,KAAK,CAAC,UAAU,EAAE,QAAQ,CAAC,CAAC;;EAEpD,IAAI,KAAK,CAAC,KAAK,KAAK,CAAC,WAAW,IAAI,KAAK,CAAC,GAAG,KAAK,GAAG,CAAC,EAAE;GACvD,MAAM,IAAI,KAAK,CAAC,KAAK,CAAC;GACtB;;EAEF,IAAK,WAAW,EAAE;GAChB,MAAM;GACN;;EAED,KAAK,GAAG,KAAK,CAAC,IAAI,CAAC;EACnB;;CAEF,OAAQ,MAAM,CAAC;EACd;;;AAGF,sBAAC,sBAAK,KAAK,EAAE,GAAG,EAAE;CACjB,IAAO,KAAK,GAAG,IAAI,CAAC,KAAK,EAAE,CAAC;CAC5B,KAAM,CAAC,MAAM,CAAC,CAAC,EAAE,KAAK,CAAC,CAAC;CACvB,KAAK,CAAC,MAAM,CAAC,GAAG,EAAE,KAAK,CAAC,QAAQ,CAAC,MAAM,CAAC,CAAC;;CAE1C,OAAQ,KAAK,CAAC;EACb;;AAEF,sBAAC,0BAAO,KAAK,EAAE;CACb,IAAI,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,IAAI,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,IAAE,SAAO;;CAIrDC,IAAI,KAAK,GAAG,IAAI,CAAC,iBAAiB,CAAC;CACpC,IAAO,aAAa,GAAG,KAAK,GAAG,KAAK,CAAC,GAAG,CAAC;;CAEzC,OAAQ,KAAK,EAAE;EACb,IAAI,KAAK,CAAC,QAAQ,CAAC,KAAK,CAAC,IAAE,OAAO,IAAI,CAAC,WAAW,CAAC,KAAK,EAAE,KAAK,CAAC,GAAC;;EAElE,KAAM,GAAG,aAAa,GAAG,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,GAAG,CAAC,GAAG,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC;EAC1E;EACD;;AAEF,sBAAC,oCAAY,KAAK,EAAE,KAAK,EAAE;CAC1B,IAAK,KAAK,CAAC,MAAM,IAAI,KAAK,CAAC,OAAO,CAAC,MAAM,EAAE;;EAEzCD,IAAM,GAAG,GAAG,UAAU,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,KAAK,CAAC,CAAC;EAC9C,MAAO,IAAI,KAAK;6DACwC,GAAG,CAAC,KAAI,UAAI,GAAG,CAAC,OAAM,cAC3E,KAAK,CAAC,SAAQ;GAEf,CAAC;EACF;;CAEF,IAAO,QAAQ,GAAG,KAAK,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC;;CAErC,IAAK,CAAC,KAAK,CAAC,KAAK,CAAC,GAAG,KAAK,CAAC;CAC3B,IAAK,CAAC,OAAO,CAAC,KAAK,CAAC,GAAG,QAAQ,CAAC;CAChC,IAAK,CAAC,KAAK,CAAC,QAAQ,CAAC,GAAG,CAAC,GAAG,QAAQ,CAAC;;CAEpC,IAAI,KAAK,KAAK,IAAI,CAAC,SAAS,IAAE,IAAI,CAAC,SAAS,GAAG,QAAQ,GAAC;;CAExD,IAAI,CAAC,iBAAiB,GAAG,KAAK,CAAC;CAEhC,OAAQ,IAAI,CAAC;EACZ;;AAEF,sBAAC,gCAAW;CACVC,IAAI,GAAG,GAAG,IAAI,CAAC,KAAK,CAAC;;CAErBA,IAAI,KAAK,GAAG,IAAI,CAAC,UAAU,CAAC;CAC7B,OAAQ,KAAK,EAAE;EACb,GAAG,IAAI,KAAK,CAAC,QAAQ,EAAE,CAAC;EACxB,KAAK,GAAG,KAAK,CAAC,IAAI,CAAC;EACnB;;CAED,OAAO,GAAG,GAAG,IAAI,CAAC,KAAK,CAAC;EACxB;;AAEF,sBAAC,8BAAU;CACTA,IAAI,KAAK,GAAG,IAAI,CAAC,UAAU,CAAC;CAC5B,GAAG;EACF,IAAI,KAAK,CAAC,KAAK,CAAC,MAAM,IAAI,KAAK,CAAC,KAAK,CAAC,IAAI,EAAE;IAC3C,KAAM,CAAC,OAAO,CAAC,MAAM,IAAI,KAAK,CAAC,OAAO,CAAC,IAAI,EAAE;IAC7C,KAAM,CAAC,KAAK,CAAC,MAAM,IAAI,KAAK,CAAC,KAAK,CAAC,IAAI,EAAE;GAC1C,EAAC,OAAO,KAAK,GAAC;EACd,QAAQ,KAAK,GAAG,KAAK,CAAC,IAAI,EAAE;CAC9B,OAAQ,IAAI,CAAC;EACZ;;AAEF,sBAAC,4BAAS;CACRA,IAAI,KAAK,GAAG,IAAI,CAAC,UAAU,CAAC;CAC5BA,IAAI,MAAM,GAAG,CAAC,CAAC;CACf,GAAG;EACF,MAAM,IAAI,KAAK,CAAC,KAAK,CAAC,MAAM,GAAG,KAAK,CAAC,OAAO,CAAC,MAAM,GAAG,KAAK,CAAC,KAAK,CAAC,MAAM,CAAC;EACzE,QAAQ,KAAK,GAAG,KAAK,CAAC,IAAI,EAAE;CAC9B,OAAQ,MAAM,CAAC;EACd;;AAEF,sBAAC,kCAAY;CACX,OAAO,IAAI,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC;EAC7B;;AAEF,sBAAC,sBAAK,QAAQ,EAAE;CACd,OAAO,IAAI,CAAC,SAAS,CAAC,QAAQ,CAAC,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAC;EAClD;;AAEF,sBAAC,0CAAe,QAAQ,EAAE;CACxBD,IAAM,EAAE,GAAG,IAAI,MAAM,CAAC,CAAC,QAAQ,IAAI,KAAK,IAAI,IAAI,CAAC,CAAC;;CAElD,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,EAAE,EAAE,EAAE,CAAC,CAAC;CACzC,IAAK,IAAI,CAAC,KAAK,CAAC,MAAM,IAAE,OAAO,IAAI,GAAC;;CAEnCC,IAAI,KAAK,GAAG,IAAI,CAAC,SAAS,CAAC;;CAE3B,GAAG;EACFD,IAAM,GAAG,GAAG,KAAK,CAAC,GAAG,CAAC;EACvB,IAAO,OAAO,GAAG,KAAK,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC;;;EAGlC,IAAI,KAAK,CAAC,GAAG,KAAK,GAAG,EAAE;GACtB,IAAI,IAAI,CAAC,SAAS,KAAK,KAAK,EAAE;IAC7B,IAAI,CAAC,SAAS,GAAG,KAAK,CAAC,IAAI,CAAC;IAC5B;;GAEF,IAAK,CAAC,KAAK,CAAC,KAAK,CAAC,GAAG,CAAC,GAAG,KAAK,CAAC;GAC9B,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,IAAI,CAAC,KAAK,CAAC,GAAG,KAAK,CAAC,IAAI,CAAC;GAC5C,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,IAAI,CAAC,GAAG,CAAC,GAAG,KAAK,CAAC,IAAI,CAAC;GACxC;;EAED,IAAI,OAAO,IAAE,OAAO,IAAI,GAAC;EACzB,KAAK,GAAG,KAAK,CAAC,QAAQ,CAAC;EACvB,QAAQ,KAAK,EAAE;;CAEjB,OAAQ,KAAK,CAAC;EACb;;AAEF,sBAAC,4BAAQ,QAAQ,EAAE;CACjB,IAAI,CAAC,cAAc,CAAC,QAAQ,CAAC,CAAC;CAC/B,OAAQ,IAAI,CAAC;EACZ;AACF,sBAAC,8CAAiB,QAAQ,EAAE;CAC1BA,IAAM,EAAE,GAAG,IAAI,MAAM,CAAC,GAAG,IAAI,QAAQ,IAAI,KAAK,CAAC,GAAG,GAAG,CAAC,CAAC;;CAEvD,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,EAAE,EAAE,EAAE,CAAC,CAAC;CACzC,IAAK,IAAI,CAAC,KAAK,CAAC,MAAM,IAAE,OAAO,IAAI,GAAC;;CAEnCC,IAAI,KAAK,GAAG,IAAI,CAAC,UAAU,CAAC;;CAE5B,GAAG;EACFD,IAAM,GAAG,GAAG,KAAK,CAAC,GAAG,CAAC;EACvB,IAAO,OAAO,GAAG,KAAK,CAAC,SAAS,CAAC,EAAE,CAAC,CAAC;;EAEpC,IAAI,KAAK,CAAC,GAAG,KAAK,GAAG,EAAE;;GAEtB,IAAI,KAAK,KAAK,IAAI,CAAC,SAAS,IAAE,IAAI,CAAC,SAAS,GAAG,KAAK,CAAC,IAAI,GAAC;;GAE3D,IAAK,CAAC,KAAK,CAAC,KAAK,CAAC,GAAG,CAAC,GAAG,KAAK,CAAC;GAC9B,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,IAAI,CAAC,KAAK,CAAC,GAAG,KAAK,CAAC,IAAI,CAAC;GAC5C,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,IAAI,CAAC,GAAG,CAAC,GAAG,KAAK,CAAC,IAAI,CAAC;GACxC;;EAED,IAAI,OAAO,IAAE,OAAO,IAAI,GAAC;EACzB,KAAK,GAAG,KAAK,CAAC,IAAI,CAAC;EACnB,QAAQ,KAAK,EAAE;;CAEjB,OAAQ,KAAK,CAAC;EACb;;AAEF,sBAAC,gCAAU,QAAQ,EAAE;CACnB,IAAI,CAAC,gBAAgB,CAAC,QAAQ,CAAC,CAAC;CACjC,OAAQ,IAAI,CAAC;CACZ;;ACrsBFA,IAAM,UAAU,GAAG,MAAM,CAAC,SAAS,CAAC,cAAc,CAAC;;AAEpC,IAAM,MAAM,GAC1B,eAAW,CAAC,OAAY,EAAE;kCAAP,GAAG;;CACtB,IAAK,CAAC,KAAK,GAAG,OAAO,CAAC,KAAK,IAAI,EAAE,CAAC;CACjC,IAAI,CAAC,SAAS,GAAG,OAAO,CAAC,SAAS,KAAK,SAAS,GAAG,OAAO,CAAC,SAAS,GAAG,IAAI,CAAC;CAC5E,IAAI,CAAC,OAAO,GAAG,EAAE,CAAC;CAClB,IAAI,CAAC,aAAa,GAAG,EAAE,CAAC;CACxB,IAAI,CAAC,2BAA2B,GAAG,EAAE,CAAC;EACtC;;AAEF,iBAAC,gCAAU,MAAM,EAAE;CACjB,IAAI,MAAM,YAAY,WAAW,EAAE;EAClC,OAAO,IAAI,CAAC,SAAS,CAAC;GACtB,OAAQ,EAAE,MAAM;GACf,QAAQ,EAAE,MAAM,CAAC,QAAQ;GACzB,SAAS,EAAE,IAAI,CAAC,SAAS;GACzB,CAAC,CAAC;EACH;;CAEF,IAAK,CAAC,QAAQ,CAAC,MAAM,CAAC,IAAI,CAAC,MAAM,CAAC,OAAO,EAAE;EACzC,MAAM,IAAI,KAAK,CAAC,sIAAsI,CAAC,CAAC;EACxJ;;CAED,CAAC,UAAU,EAAE,uBAAuB,EAAE,WAAW,CAAC,CAAC,OAAO,WAAC,QAAO;EAClE,IAAK,CAAC,UAAU,CAAC,IAAI,CAAC,MAAM,EAAE,MAAM,CAAC,IAAE,MAAM,CAAC,MAAM,CAAC,GAAG,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,GAAC;EAC9E,CAAC,CAAC;;CAEH,IAAI,MAAM,CAAC,SAAS,KAAK,SAAS,EAAE;;EAEnC,MAAM,CAAC,SAAS,GAAG,IAAI,CAAC,SAAS,CAAC;EAClC;;CAED,IAAI,MAAM,CAAC,QAAQ,EAAE;EACpB,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,IAAI,CAAC,2BAA2B,EAAE,MAAM,CAAC,QAAQ,CAAC,EAAE;GACxE,IAAI,CAAC,2BAA2B,CAAC,MAAM,CAAC,QAAQ,CAAC,GAAG,IAAI,CAAC,aAAa,CAAC,MAAM,CAAC;GAC/E,IAAK,CAAC,aAAa,CAAC,IAAI,CAAC,EAAE,QAAQ,EAAE,MAAM,CAAC,QAAQ,EAAE,OAAO,EAAE,MAAM,CAAC,OAAO,CAAC,QAAQ,EAAE,CAAC,CAAC;GACzF,MAAM;GACNA,IAAM,YAAY,GAAG,IAAI,CAAC,aAAa,CAAC,IAAI,CAAC,2BAA2B,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC,CAAC;GAC5F,IAAK,MAAM,CAAC,OAAO,CAAC,QAAQ,KAAK,YAAY,CAAC,OAAO,EAAE;IACtD,MAAO,IAAI,KAAK,uCAAmC,MAAM,CAAC,SAAQ,4BAAwB,CAAC;IAC1F;GACD;EACD;;CAEF,IAAK,CAAC,OAAO,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;CAC3B,OAAQ,IAAI,CAAC;EACZ;;AAEF,iBAAC,0BAAO,GAAG,EAAE,OAAO,EAAE;CACrB,IAAK,CAAC,SAAS,CAAC;EACd,OAAO,EAAE,IAAI,WAAW,CAAC,GAAG,CAAC;EAC9B,SAAU,EAAE,CAAC,OAAO,IAAI,OAAO,CAAC,SAAS,KAAK,EAAE;EAC/C,CAAC,CAAC;;CAEJ,OAAQ,IAAI,CAAC;EACZ;;AAEF,iBAAC,0BAAQ;CACPA,IAAM,MAAM,GAAG,IAAI,MAAM,CAAC;EACzB,KAAK,EAAE,IAAI,CAAC,KAAK;EACjB,SAAS,EAAE,IAAI,CAAC,SAAS;EACzB,CAAC,CAAC;;CAEJ,IAAK,CAAC,OAAO,CAAC,OAAO,WAAC,QAAO;EAC5B,MAAO,CAAC,SAAS,CAAC;GAChB,QAAQ,EAAE,MAAM,CAAC,QAAQ;GACzB,OAAO,EAAE,MAAM,CAAC,OAAO,CAAC,KAAK,EAAE;GAC/B,SAAS,EAAE,MAAM,CAAC,SAAS;GAC3B,CAAC,CAAC;EACH,CAAC,CAAC;;CAEJ,OAAQ,MAAM,CAAC;EACd;;AAEF,iBAAC,kDAAmB,OAAY,EAAE;;mCAAP,GAAG;;CAC5BA,IAAM,KAAK,GAAG,EAAE,CAAC;CAClB,IAAK,CAAC,OAAO,CAAC,OAAO,WAAC,QAAO;EAC3B,MAAM,CAAC,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,WAAW,CAAC,CAAC,OAAO,WAAC,MAAK;GACpD,IAAI,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,IAAE,KAAK,CAAC,IAAI,CAAC,IAAI,CAAC,GAAC;GAC5C,CAAC,CAAC;EACH,CAAC,CAAC;;CAEJ,IAAO,QAAQ,GAAG,IAAI,QAAQ,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC;;CAE7C,IAAI,IAAI,CAAC,KAAK,EAAE;EAChB,QAAS,CAAC,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;EAC7B;;CAEF,IAAK,CAAC,OAAO,CAAC,OAAO,WAAE,MAAM,EAAE,CAAC,EAAE;EAChC,IAAI,CAAC,GAAG,CAAC,EAAE;GACX,QAAS,CAAC,OAAO,CAACE,MAAI,CAAC,SAAS,CAAC,CAAC;GACjC;;EAEDF,IAAM,WAAW,GAAG,MAAM,CAAC,QAAQ,GAAGE,MAAI,CAAC,2BAA2B,CAAC,MAAM,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC,CAAC;EAC7FF,IAAM,WAAW,GAAG,MAAM,CAAC,OAAO,CAAC;EACpC,IAAO,MAAM,GAAG,UAAU,CAAC,WAAW,CAAC,QAAQ,CAAC,CAAC;;EAEhD,IAAI,WAAW,CAAC,KAAK,EAAE;GACvB,QAAS,CAAC,OAAO,CAAC,WAAW,CAAC,KAAK,CAAC,CAAC;GACpC;;EAEF,WAAY,CAAC,UAAU,CAAC,QAAQ,WAAC,OAAM;GACtC,IAAO,GAAG,GAAG,MAAM,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC;;GAEhC,IAAI,KAAK,CAAC,KAAK,CAAC,MAAM,IAAE,QAAQ,CAAC,OAAO,CAAC,KAAK,CAAC,KAAK,CAAC,GAAC;;GAEtD,IAAI,MAAM,CAAC,QAAQ,EAAE;IACpB,IAAI,KAAK,CAAC,MAAM,EAAE;KAClB,QAAS,CAAC,OAAO;MACf,WAAW;MACZ,KAAM,CAAC,OAAO;MACb,GAAG;MACH,KAAK,CAAC,SAAS,GAAG,KAAK,CAAC,OAAO,CAAC,KAAK,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC;MACpD,CAAC;KACF,MAAM;KACP,QAAS,CAAC,gBAAgB;MACxB,WAAW;MACX,KAAK;MACN,WAAY,CAAC,QAAQ;MACpB,GAAG;MACJ,WAAY,CAAC,kBAAkB;MAC9B,CAAC;KACF;IACD,MAAM;IACP,QAAS,CAAC,OAAO,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC;IAChC;;GAED,IAAI,KAAK,CAAC,KAAK,CAAC,MAAM,IAAE,QAAQ,CAAC,OAAO,CAAC,KAAK,CAAC,KAAK,CAAC,GAAC;GACtD,CAAC,CAAC;;EAEH,IAAI,WAAW,CAAC,KAAK,EAAE;GACvB,QAAS,CAAC,OAAO,CAAC,WAAW,CAAC,KAAK,CAAC,CAAC;GACpC;EACD,CAAC,CAAC;;CAEH,OAAO;EACN,IAAI,EAAE,OAAO,CAAC,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,GAAG,EAAE,GAAG,IAAI;EAC9D,OAAQ,EAAE,IAAI,CAAC,aAAa,CAAC,GAAG,WAAC,QAAO;GACtC,OAAO,OAAO,CAAC,IAAI,GAAG,eAAe,CAAC,OAAO,CAAC,IAAI,EAAE,MAAM,CAAC,QAAQ,CAAC,GAAG,MAAM,CAAC,QAAQ,CAAC;GACvF,CAAC;EACH,cAAe,EAAE,IAAI,CAAC,aAAa,CAAC,GAAG,WAAC,QAAO;GAC9C,OAAQ,OAAO,CAAC,cAAc,GAAG,MAAM,CAAC,OAAO,GAAG,IAAI,CAAC;GACtD,CAAC;EACH,OAAC,KAAK;EACL,QAAQ,EAAE,QAAQ,CAAC,GAAG;EACtB,CAAC;EACF;;AAEF,iBAAC,oCAAY,OAAO,EAAE;CACrB,OAAQ,IAAI,SAAS,CAAC,IAAI,CAAC,kBAAkB,CAAC,OAAO,CAAC,CAAC,CAAC;EACvD;;AAEF,iBAAC,8CAAkB;CACjBA,IAAM,kBAAkB,GAAG,EAAE,CAAC;;CAE/B,IAAK,CAAC,OAAO,CAAC,OAAO,WAAC,QAAO;EAC5B,IAAO,SAAS,GAAG,MAAM,CAAC,OAAO,CAAC,SAAS,CAAC;;EAE3C,IAAI,SAAS,KAAK,IAAI,IAAE,SAAO;;EAE/B,IAAI,CAAC,kBAAkB,CAAC,SAAS,CAAC,IAAE,kBAAkB,CAAC,SAAS,CAAC,GAAG,CAAC,GAAC;EACtE,kBAAkB,CAAC,SAAS,CAAC,IAAI,CAAC,CAAC;EACnC,CAAC,CAAC;;CAEH;EACC,MAAM,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAC,IAAI,WAAE,CAAC,EAAE,CAAC,EAAE;GAC5C,OAAQ,kBAAkB,CAAC,CAAC,CAAC,GAAG,kBAAkB,CAAC,CAAC,CAAC,CAAC;GACrD,CAAC,CAAC,CAAC,CAAC,IAAI,IAAI;GACZ;EACF;;AAEF,iBAAC,0BAAO,SAAS,EAAE;;;CACjB,IAAI,CAAC,SAAS,CAAC,MAAM,EAAE;EACtB,SAAS,GAAG,IAAI,CAAC,eAAe,EAAE,CAAC;EACnC;;CAED,IAAI,SAAS,KAAK,EAAE,IAAE,OAAO,IAAI,GAAC;;CAEnC,IAAK,eAAe,GAAG,CAAC,IAAI,CAAC,KAAK,IAAI,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,KAAK,IAAI,CAAC;;CAEpE,IAAK,CAAC,OAAO,CAAC,OAAO,WAAE,MAAM,EAAE,CAAC,EAAE;EAChCA,IAAM,SAAS,GAAG,MAAM,CAAC,SAAS,KAAK,SAAS,GAAG,MAAM,CAAC,SAAS,GAAGE,MAAI,CAAC,SAAS,CAAC;EACrFF,IAAM,WAAW,GAAG,eAAe,KAAK,CAAC,GAAG,CAAC,IAAI,QAAQ,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC;;EAE3E,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,SAAS,EAAE;GAChC,OAAO,EAAE,MAAM,CAAC,qBAAqB;GACtC,aAAC,WAAW;GACX,CAAC,CAAC;;EAEJ,eAAgB,GAAG,MAAM,CAAC,OAAO,CAAC,QAAQ,EAAE,KAAK,IAAI,CAAC;EACrD,CAAC,CAAC;;CAEH,IAAI,IAAI,CAAC,KAAK,EAAE;EAChB,IAAK,CAAC,KAAK;GACT,SAAS;GACT,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,UAAU,YAAG,KAAK,EAAE,KAAK,EAAE;IAC9C,OAAQ,KAAK,GAAG,CAAC,GAAG,SAAS,GAAG,KAAK,GAAG,KAAK,CAAC;IAC7C,CAAC,CAAC;EACJ;;CAEF,OAAQ,IAAI,CAAC;EACZ;;AAEF,iBAAC,4BAAQ,GAAG,EAAE;CACb,IAAK,CAAC,KAAK,GAAG,GAAG,GAAG,IAAI,CAAC,KAAK,CAAC;CAC/B,OAAQ,IAAI,CAAC;EACZ;;AAEF,iBAAC,gCAAW;;;CACVA,IAAM,IAAI,GAAG,IAAI,CAAC,OAAO;GACvB,GAAG,WAAE,MAAM,EAAE,CAAC,EAAE;GAChBA,IAAM,SAAS,GAAG,MAAM,CAAC,SAAS,KAAK,SAAS,GAAG,MAAM,CAAC,SAAS,GAAGE,MAAI,CAAC,SAAS,CAAC;GACtF,IAAO,GAAG,GAAG,CAAC,CAAC,GAAG,CAAC,GAAG,SAAS,GAAG,EAAE,IAAI,MAAM,CAAC,OAAO,CAAC,QAAQ,EAAE,CAAC;;GAElE,OAAQ,GAAG,CAAC;GACX,CAAC;GACD,IAAI,CAAC,EAAE,CAAC,CAAC;;CAEX,OAAO,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;EACzB;;AAEF,iBAAC,OAAO,uBAAI;CACV,IAAI,IAAI,CAAC,KAAK,CAAC,MAAM,IAAI,IAAI,CAAC,KAAK,CAAC,IAAI,EAAE;EAC1C,EAAC,OAAO,KAAK,GAAC;CACd,IAAI,IAAI,CAAC,OAAO,CAAC,IAAI,WAAC,QAAO,SAAG,CAAC,MAAM,CAAC,OAAO,CAAC,OAAO,KAAE,CAAC;EAC1D,EAAC,OAAO,KAAK,GAAC;CACf,OAAQ,IAAI,CAAC;EACZ;;AAEF,iBAAC,4BAAS;CACR,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,WAAE,MAAM,EAAE,MAAM,EAAE,SAAG,MAAM,GAAG,MAAM,CAAC,OAAO,CAAC,MAAM,KAAE,EAAE,IAAI,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;EACpG;;AAEF,iBAAC,kCAAY;CACX,OAAO,IAAI,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC;EAC7B;;AAEF,iBAAC,sBAAK,QAAQ,EAAE;CACd,OAAO,IAAI,CAAC,SAAS,CAAC,QAAQ,CAAC,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAC;EAClD;;AAEF,iBAAC,gCAAU,QAAQ,EAAE;CACnBF,IAAM,EAAE,GAAG,IAAI,MAAM,CAAC,GAAG,IAAI,QAAQ,IAAI,KAAK,CAAC,GAAG,GAAG,CAAC,CAAC;CACvD,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,EAAE,EAAE,EAAE,CAAC,CAAC;;CAExC,IAAI,CAAC,IAAI,CAAC,KAAK,EAAE;EACjB,IAAK,MAAM,CAAC;EACXC,IAAI,CAAC,GAAG,CAAC,CAAC;;EAEV,GAAG;GACH,MAAO,GAAG,IAAI,CAAC,OAAO,CAAC,CAAC,EAAE,CAAC,CAAC;GAC5B,IAAK,CAAC,MAAM,EAAE;IACZ,MAAM;IACN;GACD,QAAQ,CAAC,MAAM,CAAC,OAAO,CAAC,gBAAgB,CAAC,QAAQ,CAAC,EAAE;EACrD;;CAEF,OAAQ,IAAI,CAAC;EACZ;;AAEF,iBAAC,4BAAQ,QAAQ,EAAE;CACjBD,IAAM,EAAE,GAAG,IAAI,MAAM,CAAC,CAAC,QAAQ,IAAI,KAAK,IAAI,IAAI,CAAC,CAAC;;CAEnD,IAAK,MAAM,CAAC;CACZ,IAAK,CAAC,GAAG,IAAI,CAAC,OAAO,CAAC,MAAM,GAAG,CAAC,CAAC;;CAEhC,GAAG;EACH,MAAO,GAAG,IAAI,CAAC,OAAO,CAAC,CAAC,EAAE,CAAC,CAAC;EAC5B,IAAK,CAAC,MAAM,EAAE;GACZ,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,EAAE,EAAE,EAAE,CAAC,CAAC;GACxC,MAAM;GACN;EACD,QAAQ,CAAC,MAAM,CAAC,OAAO,CAAC,cAAc,CAAC,QAAQ,CAAC,EAAE;;CAEpD,OAAQ,IAAI,CAAC;CACZ;;;;;"}
1
+ {"version":3,"file":"magic-string.es.js","sources":["../src/BitSet.js","../src/Chunk.js","../src/SourceMap.js","../src/utils/guessIndent.js","../src/utils/getRelativePath.js","../src/utils/isObject.js","../src/utils/getLocator.js","../src/utils/Mappings.js","../src/MagicString.js","../src/Bundle.js"],"sourcesContent":["export default class BitSet {\n\tconstructor(arg) {\n\t\tthis.bits = arg instanceof BitSet ? arg.bits.slice() : [];\n\t}\n\n\tadd(n) {\n\t\tthis.bits[Math.floor(n / BITS)] |= 1 << n % BITS;\n\t}\n\n\thas(n) {\n\t\treturn !!(this.bits[Math.floor(n / BITS)] & (1 << n % BITS));\n\t}\n}\n\nconst BITS = 32;\n","export default class Chunk {\n\tconstructor(start, end, content) {\n\t\tthis.start = start;\n\t\tthis.end = end;\n\t\tthis.original = content;\n\n\t\tthis.intro = '';\n\t\tthis.outro = '';\n\n\t\tthis.content = content;\n\t\tthis.storeName = false;\n\t\tthis.edited = false;\n\n\t\t// we make these non-enumerable, for sanity while debugging\n\t\tObject.defineProperties(this, {\n\t\t\tprevious: { writable: true, value: null },\n\t\t\tnext: { writable: true, value: null }\n\t\t});\n\t}\n\n\tappendLeft(content) {\n\t\tthis.outro += content;\n\t}\n\n\tappendRight(content) {\n\t\tthis.intro = this.intro + content;\n\t}\n\n\tclone() {\n\t\tconst chunk = new Chunk(this.start, this.end, this.original);\n\n\t\tchunk.intro = this.intro;\n\t\tchunk.outro = this.outro;\n\t\tchunk.content = this.content;\n\t\tchunk.storeName = this.storeName;\n\t\tchunk.edited = this.edited;\n\n\t\treturn chunk;\n\t}\n\n\tcontains(index) {\n\t\treturn this.start < index && index < this.end;\n\t}\n\n\teachNext(fn) {\n\t\tlet chunk = this;\n\t\twhile (chunk) {\n\t\t\tfn(chunk);\n\t\t\tchunk = chunk.next;\n\t\t}\n\t}\n\n\teachPrevious(fn) {\n\t\tlet chunk = this;\n\t\twhile (chunk) {\n\t\t\tfn(chunk);\n\t\t\tchunk = chunk.previous;\n\t\t}\n\t}\n\n\tedit(content, storeName, contentOnly) {\n\t\tthis.content = content;\n\t\tif (!contentOnly) {\n\t\t\tthis.intro = '';\n\t\t\tthis.outro = '';\n\t\t}\n\t\tthis.storeName = storeName;\n\n\t\tthis.edited = true;\n\n\t\treturn this;\n\t}\n\n\tprependLeft(content) {\n\t\tthis.outro = content + this.outro;\n\t}\n\n\tprependRight(content) {\n\t\tthis.intro = content + this.intro;\n\t}\n\n\tsplit(index) {\n\t\tconst sliceIndex = index - this.start;\n\n\t\tconst originalBefore = this.original.slice(0, sliceIndex);\n\t\tconst originalAfter = this.original.slice(sliceIndex);\n\n\t\tthis.original = originalBefore;\n\n\t\tconst newChunk = new Chunk(index, this.end, originalAfter);\n\t\tnewChunk.outro = this.outro;\n\t\tthis.outro = '';\n\n\t\tthis.end = index;\n\n\t\tif (this.edited) {\n\t\t\t// TODO is this block necessary?...\n\t\t\tnewChunk.edit('', false);\n\t\t\tthis.content = '';\n\t\t} else {\n\t\t\tthis.content = originalBefore;\n\t\t}\n\n\t\tnewChunk.next = this.next;\n\t\tif (newChunk.next) newChunk.next.previous = newChunk;\n\t\tnewChunk.previous = this;\n\t\tthis.next = newChunk;\n\n\t\treturn newChunk;\n\t}\n\n\ttoString() {\n\t\treturn this.intro + this.content + this.outro;\n\t}\n\n\ttrimEnd(rx) {\n\t\tthis.outro = this.outro.replace(rx, '');\n\t\tif (this.outro.length) return true;\n\n\t\tconst trimmed = this.content.replace(rx, '');\n\n\t\tif (trimmed.length) {\n\t\t\tif (trimmed !== this.content) {\n\t\t\t\tthis.split(this.start + trimmed.length).edit('', undefined, true);\n\t\t\t}\n\t\t\treturn true;\n\n\t\t} else {\n\t\t\tthis.edit('', undefined, true);\n\n\t\t\tthis.intro = this.intro.replace(rx, '');\n\t\t\tif (this.intro.length) return true;\n\t\t}\n\t}\n\n\ttrimStart(rx) {\n\t\tthis.intro = this.intro.replace(rx, '');\n\t\tif (this.intro.length) return true;\n\n\t\tconst trimmed = this.content.replace(rx, '');\n\n\t\tif (trimmed.length) {\n\t\t\tif (trimmed !== this.content) {\n\t\t\t\tthis.split(this.end - trimmed.length);\n\t\t\t\tthis.edit('', undefined, true);\n\t\t\t}\n\t\t\treturn true;\n\n\t\t} else {\n\t\t\tthis.edit('', undefined, true);\n\n\t\t\tthis.outro = this.outro.replace(rx, '');\n\t\t\tif (this.outro.length) return true;\n\t\t}\n\t}\n}\n","import { encode } from 'sourcemap-codec';\n\nlet btoa = () => {\n\tthrow new Error('Unsupported environment: `window.btoa` or `Buffer` should be supported.');\n};\nif (typeof window !== 'undefined' && typeof window.btoa === 'function') {\n\tbtoa = str => window.btoa(unescape(encodeURIComponent(str)));\n} else if (typeof Buffer === 'function') {\n\tbtoa = str => Buffer.from(str, 'utf-8').toString('base64');\n}\n\nexport default class SourceMap {\n\tconstructor(properties) {\n\t\tthis.version = 3;\n\t\tthis.file = properties.file;\n\t\tthis.sources = properties.sources;\n\t\tthis.sourcesContent = properties.sourcesContent;\n\t\tthis.names = properties.names;\n\t\tthis.mappings = encode(properties.mappings);\n\t}\n\n\ttoString() {\n\t\treturn JSON.stringify(this);\n\t}\n\n\ttoUrl() {\n\t\treturn 'data:application/json;charset=utf-8;base64,' + btoa(this.toString());\n\t}\n}\n","export default function guessIndent(code) {\n\tconst lines = code.split('\\n');\n\n\tconst tabbed = lines.filter(line => /^\\t+/.test(line));\n\tconst spaced = lines.filter(line => /^ {2,}/.test(line));\n\n\tif (tabbed.length === 0 && spaced.length === 0) {\n\t\treturn null;\n\t}\n\n\t// More lines tabbed than spaced? Assume tabs, and\n\t// default to tabs in the case of a tie (or nothing\n\t// to go on)\n\tif (tabbed.length >= spaced.length) {\n\t\treturn '\\t';\n\t}\n\n\t// Otherwise, we need to guess the multiple\n\tconst min = spaced.reduce((previous, current) => {\n\t\tconst numSpaces = /^ +/.exec(current)[0].length;\n\t\treturn Math.min(numSpaces, previous);\n\t}, Infinity);\n\n\treturn new Array(min + 1).join(' ');\n}\n","export default function getRelativePath(from, to) {\n\tconst fromParts = from.split(/[/\\\\]/);\n\tconst toParts = to.split(/[/\\\\]/);\n\n\tfromParts.pop(); // get dirname\n\n\twhile (fromParts[0] === toParts[0]) {\n\t\tfromParts.shift();\n\t\ttoParts.shift();\n\t}\n\n\tif (fromParts.length) {\n\t\tlet i = fromParts.length;\n\t\twhile (i--) fromParts[i] = '..';\n\t}\n\n\treturn fromParts.concat(toParts).join('/');\n}\n","const toString = Object.prototype.toString;\n\nexport default function isObject(thing) {\n\treturn toString.call(thing) === '[object Object]';\n}\n","export default function getLocator(source) {\n\tconst originalLines = source.split('\\n');\n\tconst lineOffsets = [];\n\n\tfor (let i = 0, pos = 0; i < originalLines.length; i++) {\n\t\tlineOffsets.push(pos);\n\t\tpos += originalLines[i].length + 1;\n\t}\n\n\treturn function locate(index) {\n\t\tlet i = 0;\n\t\tlet j = lineOffsets.length;\n\t\twhile (i < j) {\n\t\t\tconst m = (i + j) >> 1;\n\t\t\tif (index < lineOffsets[m]) {\n\t\t\t\tj = m;\n\t\t\t} else {\n\t\t\t\ti = m + 1;\n\t\t\t}\n\t\t}\n\t\tconst line = i - 1;\n\t\tconst column = index - lineOffsets[line];\n\t\treturn { line, column };\n\t};\n}\n","export default class Mappings {\n\tconstructor(hires) {\n\t\tthis.hires = hires;\n\t\tthis.generatedCodeLine = 0;\n\t\tthis.generatedCodeColumn = 0;\n\t\tthis.raw = [];\n\t\tthis.rawSegments = this.raw[this.generatedCodeLine] = [];\n\t\tthis.pending = null;\n\t}\n\n\taddEdit(sourceIndex, content, loc, nameIndex) {\n\t\tif (content.length) {\n\t\t\tconst segment = [this.generatedCodeColumn, sourceIndex, loc.line, loc.column];\n\t\t\tif (nameIndex >= 0) {\n\t\t\t\tsegment.push(nameIndex);\n\t\t\t}\n\t\t\tthis.rawSegments.push(segment);\n\t\t} else if (this.pending) {\n\t\t\tthis.rawSegments.push(this.pending);\n\t\t}\n\n\t\tthis.advance(content);\n\t\tthis.pending = null;\n\t}\n\n\taddUneditedChunk(sourceIndex, chunk, original, loc, sourcemapLocations) {\n\t\tlet originalCharIndex = chunk.start;\n\t\tlet first = true;\n\n\t\twhile (originalCharIndex < chunk.end) {\n\t\t\tif (this.hires || first || sourcemapLocations.has(originalCharIndex)) {\n\t\t\t\tthis.rawSegments.push([this.generatedCodeColumn, sourceIndex, loc.line, loc.column]);\n\t\t\t}\n\n\t\t\tif (original[originalCharIndex] === '\\n') {\n\t\t\t\tloc.line += 1;\n\t\t\t\tloc.column = 0;\n\t\t\t\tthis.generatedCodeLine += 1;\n\t\t\t\tthis.raw[this.generatedCodeLine] = this.rawSegments = [];\n\t\t\t\tthis.generatedCodeColumn = 0;\n\t\t\t\tfirst = true;\n\t\t\t} else {\n\t\t\t\tloc.column += 1;\n\t\t\t\tthis.generatedCodeColumn += 1;\n\t\t\t\tfirst = false;\n\t\t\t}\n\n\t\t\toriginalCharIndex += 1;\n\t\t}\n\n\t\tthis.pending = sourceIndex > 0\n\t\t\t? [this.generatedCodeColumn, sourceIndex, loc.line, loc.column]\n\t\t\t: null;\n\t}\n\n\tadvance(str) {\n\t\tif (!str) return;\n\n\t\tconst lines = str.split('\\n');\n\n\t\tif (lines.length > 1) {\n\t\t\tfor (let i = 0; i < lines.length - 1; i++) {\n\t\t\t\tthis.generatedCodeLine++;\n\t\t\t\tthis.raw[this.generatedCodeLine] = this.rawSegments = [];\n\t\t\t}\n\t\t\tthis.generatedCodeColumn = 0;\n\t\t}\n\n\t\tthis.generatedCodeColumn += lines[lines.length - 1].length;\n\t}\n}\n","import BitSet from './BitSet.js';\nimport Chunk from './Chunk.js';\nimport SourceMap from './SourceMap.js';\nimport guessIndent from './utils/guessIndent.js';\nimport getRelativePath from './utils/getRelativePath.js';\nimport isObject from './utils/isObject.js';\nimport getLocator from './utils/getLocator.js';\nimport Mappings from './utils/Mappings.js';\nimport Stats from './utils/Stats.js';\n\nconst n = '\\n';\n\nconst warned = {\n\tinsertLeft: false,\n\tinsertRight: false,\n\tstoreName: false\n};\n\nexport default class MagicString {\n\tconstructor(string, options = {}) {\n\t\tconst chunk = new Chunk(0, string.length, string);\n\n\t\tObject.defineProperties(this, {\n\t\t\toriginal: { writable: true, value: string },\n\t\t\toutro: { writable: true, value: '' },\n\t\t\tintro: { writable: true, value: '' },\n\t\t\tfirstChunk: { writable: true, value: chunk },\n\t\t\tlastChunk: { writable: true, value: chunk },\n\t\t\tlastSearchedChunk: { writable: true, value: chunk },\n\t\t\tbyStart: { writable: true, value: {} },\n\t\t\tbyEnd: { writable: true, value: {} },\n\t\t\tfilename: { writable: true, value: options.filename },\n\t\t\tindentExclusionRanges: { writable: true, value: options.indentExclusionRanges },\n\t\t\tsourcemapLocations: { writable: true, value: new BitSet() },\n\t\t\tstoredNames: { writable: true, value: {} },\n\t\t\tindentStr: { writable: true, value: guessIndent(string) }\n\t\t});\n\n\t\tif (DEBUG) {\n\t\t\tObject.defineProperty(this, 'stats', { value: new Stats() });\n\t\t}\n\n\t\tthis.byStart[0] = chunk;\n\t\tthis.byEnd[string.length] = chunk;\n\t}\n\n\taddSourcemapLocation(char) {\n\t\tthis.sourcemapLocations.add(char);\n\t}\n\n\tappend(content) {\n\t\tif (typeof content !== 'string') throw new TypeError('outro content must be a string');\n\n\t\tthis.outro += content;\n\t\treturn this;\n\t}\n\n\tappendLeft(index, content) {\n\t\tif (typeof content !== 'string') throw new TypeError('inserted content must be a string');\n\n\t\tif (DEBUG) this.stats.time('appendLeft');\n\n\t\tthis._split(index);\n\n\t\tconst chunk = this.byEnd[index];\n\n\t\tif (chunk) {\n\t\t\tchunk.appendLeft(content);\n\t\t} else {\n\t\t\tthis.intro += content;\n\t\t}\n\n\t\tif (DEBUG) this.stats.timeEnd('appendLeft');\n\t\treturn this;\n\t}\n\n\tappendRight(index, content) {\n\t\tif (typeof content !== 'string') throw new TypeError('inserted content must be a string');\n\n\t\tif (DEBUG) this.stats.time('appendRight');\n\n\t\tthis._split(index);\n\n\t\tconst chunk = this.byStart[index];\n\n\t\tif (chunk) {\n\t\t\tchunk.appendRight(content);\n\t\t} else {\n\t\t\tthis.outro += content;\n\t\t}\n\n\t\tif (DEBUG) this.stats.timeEnd('appendRight');\n\t\treturn this;\n\t}\n\n\tclone() {\n\t\tconst cloned = new MagicString(this.original, { filename: this.filename });\n\n\t\tlet originalChunk = this.firstChunk;\n\t\tlet clonedChunk = (cloned.firstChunk = cloned.lastSearchedChunk = originalChunk.clone());\n\n\t\twhile (originalChunk) {\n\t\t\tcloned.byStart[clonedChunk.start] = clonedChunk;\n\t\t\tcloned.byEnd[clonedChunk.end] = clonedChunk;\n\n\t\t\tconst nextOriginalChunk = originalChunk.next;\n\t\t\tconst nextClonedChunk = nextOriginalChunk && nextOriginalChunk.clone();\n\n\t\t\tif (nextClonedChunk) {\n\t\t\t\tclonedChunk.next = nextClonedChunk;\n\t\t\t\tnextClonedChunk.previous = clonedChunk;\n\n\t\t\t\tclonedChunk = nextClonedChunk;\n\t\t\t}\n\n\t\t\toriginalChunk = nextOriginalChunk;\n\t\t}\n\n\t\tcloned.lastChunk = clonedChunk;\n\n\t\tif (this.indentExclusionRanges) {\n\t\t\tcloned.indentExclusionRanges = this.indentExclusionRanges.slice();\n\t\t}\n\n\t\tcloned.sourcemapLocations = new BitSet(this.sourcemapLocations);\n\n\t\tcloned.intro = this.intro;\n\t\tcloned.outro = this.outro;\n\n\t\treturn cloned;\n\t}\n\n\tgenerateDecodedMap(options) {\n\t\toptions = options || {};\n\n\t\tconst sourceIndex = 0;\n\t\tconst names = Object.keys(this.storedNames);\n\t\tconst mappings = new Mappings(options.hires);\n\n\t\tconst locate = getLocator(this.original);\n\n\t\tif (this.intro) {\n\t\t\tmappings.advance(this.intro);\n\t\t}\n\n\t\tthis.firstChunk.eachNext(chunk => {\n\t\t\tconst loc = locate(chunk.start);\n\n\t\t\tif (chunk.intro.length) mappings.advance(chunk.intro);\n\n\t\t\tif (chunk.edited) {\n\t\t\t\tmappings.addEdit(\n\t\t\t\t\tsourceIndex,\n\t\t\t\t\tchunk.content,\n\t\t\t\t\tloc,\n\t\t\t\t\tchunk.storeName ? names.indexOf(chunk.original) : -1\n\t\t\t\t);\n\t\t\t} else {\n\t\t\t\tmappings.addUneditedChunk(sourceIndex, chunk, this.original, loc, this.sourcemapLocations);\n\t\t\t}\n\n\t\t\tif (chunk.outro.length) mappings.advance(chunk.outro);\n\t\t});\n\n\t\treturn {\n\t\t\tfile: options.file ? options.file.split(/[/\\\\]/).pop() : null,\n\t\t\tsources: [options.source ? getRelativePath(options.file || '', options.source) : null],\n\t\t\tsourcesContent: options.includeContent ? [this.original] : [null],\n\t\t\tnames,\n\t\t\tmappings: mappings.raw\n\t\t};\n\t}\n\n\tgenerateMap(options) {\n\t\treturn new SourceMap(this.generateDecodedMap(options));\n\t}\n\n\tgetIndentString() {\n\t\treturn this.indentStr === null ? '\\t' : this.indentStr;\n\t}\n\n\tindent(indentStr, options) {\n\t\tconst pattern = /^[^\\r\\n]/gm;\n\n\t\tif (isObject(indentStr)) {\n\t\t\toptions = indentStr;\n\t\t\tindentStr = undefined;\n\t\t}\n\n\t\tindentStr = indentStr !== undefined ? indentStr : this.indentStr || '\\t';\n\n\t\tif (indentStr === '') return this; // noop\n\n\t\toptions = options || {};\n\n\t\t// Process exclusion ranges\n\t\tconst isExcluded = {};\n\n\t\tif (options.exclude) {\n\t\t\tconst exclusions =\n\t\t\t\ttypeof options.exclude[0] === 'number' ? [options.exclude] : options.exclude;\n\t\t\texclusions.forEach(exclusion => {\n\t\t\t\tfor (let i = exclusion[0]; i < exclusion[1]; i += 1) {\n\t\t\t\t\tisExcluded[i] = true;\n\t\t\t\t}\n\t\t\t});\n\t\t}\n\n\t\tlet shouldIndentNextCharacter = options.indentStart !== false;\n\t\tconst replacer = match => {\n\t\t\tif (shouldIndentNextCharacter) return `${indentStr}${match}`;\n\t\t\tshouldIndentNextCharacter = true;\n\t\t\treturn match;\n\t\t};\n\n\t\tthis.intro = this.intro.replace(pattern, replacer);\n\n\t\tlet charIndex = 0;\n\t\tlet chunk = this.firstChunk;\n\n\t\twhile (chunk) {\n\t\t\tconst end = chunk.end;\n\n\t\t\tif (chunk.edited) {\n\t\t\t\tif (!isExcluded[charIndex]) {\n\t\t\t\t\tchunk.content = chunk.content.replace(pattern, replacer);\n\n\t\t\t\t\tif (chunk.content.length) {\n\t\t\t\t\t\tshouldIndentNextCharacter = chunk.content[chunk.content.length - 1] === '\\n';\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tcharIndex = chunk.start;\n\n\t\t\t\twhile (charIndex < end) {\n\t\t\t\t\tif (!isExcluded[charIndex]) {\n\t\t\t\t\t\tconst char = this.original[charIndex];\n\n\t\t\t\t\t\tif (char === '\\n') {\n\t\t\t\t\t\t\tshouldIndentNextCharacter = true;\n\t\t\t\t\t\t} else if (char !== '\\r' && shouldIndentNextCharacter) {\n\t\t\t\t\t\t\tshouldIndentNextCharacter = false;\n\n\t\t\t\t\t\t\tif (charIndex === chunk.start) {\n\t\t\t\t\t\t\t\tchunk.prependRight(indentStr);\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tthis._splitChunk(chunk, charIndex);\n\t\t\t\t\t\t\t\tchunk = chunk.next;\n\t\t\t\t\t\t\t\tchunk.prependRight(indentStr);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\tcharIndex += 1;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tcharIndex = chunk.end;\n\t\t\tchunk = chunk.next;\n\t\t}\n\n\t\tthis.outro = this.outro.replace(pattern, replacer);\n\n\t\treturn this;\n\t}\n\n\tinsert() {\n\t\tthrow new Error('magicString.insert(...) is deprecated. Use prependRight(...) or appendLeft(...)');\n\t}\n\n\tinsertLeft(index, content) {\n\t\tif (!warned.insertLeft) {\n\t\t\tconsole.warn('magicString.insertLeft(...) is deprecated. Use magicString.appendLeft(...) instead'); // eslint-disable-line no-console\n\t\t\twarned.insertLeft = true;\n\t\t}\n\n\t\treturn this.appendLeft(index, content);\n\t}\n\n\tinsertRight(index, content) {\n\t\tif (!warned.insertRight) {\n\t\t\tconsole.warn('magicString.insertRight(...) is deprecated. Use magicString.prependRight(...) instead'); // eslint-disable-line no-console\n\t\t\twarned.insertRight = true;\n\t\t}\n\n\t\treturn this.prependRight(index, content);\n\t}\n\n\tmove(start, end, index) {\n\t\tif (index >= start && index <= end) throw new Error('Cannot move a selection inside itself');\n\n\t\tif (DEBUG) this.stats.time('move');\n\n\t\tthis._split(start);\n\t\tthis._split(end);\n\t\tthis._split(index);\n\n\t\tconst first = this.byStart[start];\n\t\tconst last = this.byEnd[end];\n\n\t\tconst oldLeft = first.previous;\n\t\tconst oldRight = last.next;\n\n\t\tconst newRight = this.byStart[index];\n\t\tif (!newRight && last === this.lastChunk) return this;\n\t\tconst newLeft = newRight ? newRight.previous : this.lastChunk;\n\n\t\tif (oldLeft) oldLeft.next = oldRight;\n\t\tif (oldRight) oldRight.previous = oldLeft;\n\n\t\tif (newLeft) newLeft.next = first;\n\t\tif (newRight) newRight.previous = last;\n\n\t\tif (!first.previous) this.firstChunk = last.next;\n\t\tif (!last.next) {\n\t\t\tthis.lastChunk = first.previous;\n\t\t\tthis.lastChunk.next = null;\n\t\t}\n\n\t\tfirst.previous = newLeft;\n\t\tlast.next = newRight || null;\n\n\t\tif (!newLeft) this.firstChunk = first;\n\t\tif (!newRight) this.lastChunk = last;\n\n\t\tif (DEBUG) this.stats.timeEnd('move');\n\t\treturn this;\n\t}\n\n\toverwrite(start, end, content, options) {\n\t\tif (typeof content !== 'string') throw new TypeError('replacement content must be a string');\n\n\t\twhile (start < 0) start += this.original.length;\n\t\twhile (end < 0) end += this.original.length;\n\n\t\tif (end > this.original.length) throw new Error('end is out of bounds');\n\t\tif (start === end)\n\t\t\tthrow new Error('Cannot overwrite a zero-length range – use appendLeft or prependRight instead');\n\n\t\tif (DEBUG) this.stats.time('overwrite');\n\n\t\tthis._split(start);\n\t\tthis._split(end);\n\n\t\tif (options === true) {\n\t\t\tif (!warned.storeName) {\n\t\t\t\tconsole.warn('The final argument to magicString.overwrite(...) should be an options object. See https://github.com/rich-harris/magic-string'); // eslint-disable-line no-console\n\t\t\t\twarned.storeName = true;\n\t\t\t}\n\n\t\t\toptions = { storeName: true };\n\t\t}\n\t\tconst storeName = options !== undefined ? options.storeName : false;\n\t\tconst contentOnly = options !== undefined ? options.contentOnly : false;\n\n\t\tif (storeName) {\n\t\t\tconst original = this.original.slice(start, end);\n\t\t\tthis.storedNames[original] = true;\n\t\t}\n\n\t\tconst first = this.byStart[start];\n\t\tconst last = this.byEnd[end];\n\n\t\tif (first) {\n\t\t\tif (end > first.end && first.next !== this.byStart[first.end]) {\n\t\t\t\tthrow new Error('Cannot overwrite across a split point');\n\t\t\t}\n\n\t\t\tfirst.edit(content, storeName, contentOnly);\n\n\t\t\tif (first !== last) {\n\t\t\t\tlet chunk = first.next;\n\t\t\t\twhile (chunk !== last) {\n\t\t\t\t\tchunk.edit('', false);\n\t\t\t\t\tchunk = chunk.next;\n\t\t\t\t}\n\n\t\t\t\tchunk.edit('', false);\n\t\t\t}\n\t\t} else {\n\t\t\t// must be inserting at the end\n\t\t\tconst newChunk = new Chunk(start, end, '').edit(content, storeName);\n\n\t\t\t// TODO last chunk in the array may not be the last chunk, if it's moved...\n\t\t\tlast.next = newChunk;\n\t\t\tnewChunk.previous = last;\n\t\t}\n\n\t\tif (DEBUG) this.stats.timeEnd('overwrite');\n\t\treturn this;\n\t}\n\n\tprepend(content) {\n\t\tif (typeof content !== 'string') throw new TypeError('outro content must be a string');\n\n\t\tthis.intro = content + this.intro;\n\t\treturn this;\n\t}\n\n\tprependLeft(index, content) {\n\t\tif (typeof content !== 'string') throw new TypeError('inserted content must be a string');\n\n\t\tif (DEBUG) this.stats.time('insertRight');\n\n\t\tthis._split(index);\n\n\t\tconst chunk = this.byEnd[index];\n\n\t\tif (chunk) {\n\t\t\tchunk.prependLeft(content);\n\t\t} else {\n\t\t\tthis.intro = content + this.intro;\n\t\t}\n\n\t\tif (DEBUG) this.stats.timeEnd('insertRight');\n\t\treturn this;\n\t}\n\n\tprependRight(index, content) {\n\t\tif (typeof content !== 'string') throw new TypeError('inserted content must be a string');\n\n\t\tif (DEBUG) this.stats.time('insertRight');\n\n\t\tthis._split(index);\n\n\t\tconst chunk = this.byStart[index];\n\n\t\tif (chunk) {\n\t\t\tchunk.prependRight(content);\n\t\t} else {\n\t\t\tthis.outro = content + this.outro;\n\t\t}\n\n\t\tif (DEBUG) this.stats.timeEnd('insertRight');\n\t\treturn this;\n\t}\n\n\tremove(start, end) {\n\t\twhile (start < 0) start += this.original.length;\n\t\twhile (end < 0) end += this.original.length;\n\n\t\tif (start === end) return this;\n\n\t\tif (start < 0 || end > this.original.length) throw new Error('Character is out of bounds');\n\t\tif (start > end) throw new Error('end must be greater than start');\n\n\t\tif (DEBUG) this.stats.time('remove');\n\n\t\tthis._split(start);\n\t\tthis._split(end);\n\n\t\tlet chunk = this.byStart[start];\n\n\t\twhile (chunk) {\n\t\t\tchunk.intro = '';\n\t\t\tchunk.outro = '';\n\t\t\tchunk.edit('');\n\n\t\t\tchunk = end > chunk.end ? this.byStart[chunk.end] : null;\n\t\t}\n\n\t\tif (DEBUG) this.stats.timeEnd('remove');\n\t\treturn this;\n\t}\n\n\tlastChar() {\n\t\tif (this.outro.length)\n\t\t\treturn this.outro[this.outro.length - 1];\n\t\tlet chunk = this.lastChunk;\n\t\tdo {\n\t\t\tif (chunk.outro.length)\n\t\t\t\treturn chunk.outro[chunk.outro.length - 1];\n\t\t\tif (chunk.content.length)\n\t\t\t\treturn chunk.content[chunk.content.length - 1];\n\t\t\tif (chunk.intro.length)\n\t\t\t\treturn chunk.intro[chunk.intro.length - 1];\n\t\t} while (chunk = chunk.previous);\n\t\tif (this.intro.length)\n\t\t\treturn this.intro[this.intro.length - 1];\n\t\treturn '';\n\t}\n\n\tlastLine() {\n\t\tlet lineIndex = this.outro.lastIndexOf(n);\n\t\tif (lineIndex !== -1)\n\t\t\treturn this.outro.substr(lineIndex + 1);\n\t\tlet lineStr = this.outro;\n\t\tlet chunk = this.lastChunk;\n\t\tdo {\n\t\t\tif (chunk.outro.length > 0) {\n\t\t\t\tlineIndex = chunk.outro.lastIndexOf(n);\n\t\t\t\tif (lineIndex !== -1)\n\t\t\t\t\treturn chunk.outro.substr(lineIndex + 1) + lineStr;\n\t\t\t\tlineStr = chunk.outro + lineStr;\n\t\t\t}\n\n\t\t\tif (chunk.content.length > 0) {\n\t\t\t\tlineIndex = chunk.content.lastIndexOf(n);\n\t\t\t\tif (lineIndex !== -1)\n\t\t\t\t\treturn chunk.content.substr(lineIndex + 1) + lineStr;\n\t\t\t\tlineStr = chunk.content + lineStr;\n\t\t\t}\n\n\t\t\tif (chunk.intro.length > 0) {\n\t\t\t\tlineIndex = chunk.intro.lastIndexOf(n);\n\t\t\t\tif (lineIndex !== -1)\n\t\t\t\t\treturn chunk.intro.substr(lineIndex + 1) + lineStr;\n\t\t\t\tlineStr = chunk.intro + lineStr;\n\t\t\t}\n\t\t} while (chunk = chunk.previous);\n\t\tlineIndex = this.intro.lastIndexOf(n);\n\t\tif (lineIndex !== -1)\n\t\t\treturn this.intro.substr(lineIndex + 1) + lineStr;\n\t\treturn this.intro + lineStr;\n\t}\n\n\tslice(start = 0, end = this.original.length) {\n\t\twhile (start < 0) start += this.original.length;\n\t\twhile (end < 0) end += this.original.length;\n\n\t\tlet result = '';\n\n\t\t// find start chunk\n\t\tlet chunk = this.firstChunk;\n\t\twhile (chunk && (chunk.start > start || chunk.end <= start)) {\n\t\t\t// found end chunk before start\n\t\t\tif (chunk.start < end && chunk.end >= end) {\n\t\t\t\treturn result;\n\t\t\t}\n\n\t\t\tchunk = chunk.next;\n\t\t}\n\n\t\tif (chunk && chunk.edited && chunk.start !== start)\n\t\t\tthrow new Error(`Cannot use replaced character ${start} as slice start anchor.`);\n\n\t\tconst startChunk = chunk;\n\t\twhile (chunk) {\n\t\t\tif (chunk.intro && (startChunk !== chunk || chunk.start === start)) {\n\t\t\t\tresult += chunk.intro;\n\t\t\t}\n\n\t\t\tconst containsEnd = chunk.start < end && chunk.end >= end;\n\t\t\tif (containsEnd && chunk.edited && chunk.end !== end)\n\t\t\t\tthrow new Error(`Cannot use replaced character ${end} as slice end anchor.`);\n\n\t\t\tconst sliceStart = startChunk === chunk ? start - chunk.start : 0;\n\t\t\tconst sliceEnd = containsEnd ? chunk.content.length + end - chunk.end : chunk.content.length;\n\n\t\t\tresult += chunk.content.slice(sliceStart, sliceEnd);\n\n\t\t\tif (chunk.outro && (!containsEnd || chunk.end === end)) {\n\t\t\t\tresult += chunk.outro;\n\t\t\t}\n\n\t\t\tif (containsEnd) {\n\t\t\t\tbreak;\n\t\t\t}\n\n\t\t\tchunk = chunk.next;\n\t\t}\n\n\t\treturn result;\n\t}\n\n\t// TODO deprecate this? not really very useful\n\tsnip(start, end) {\n\t\tconst clone = this.clone();\n\t\tclone.remove(0, start);\n\t\tclone.remove(end, clone.original.length);\n\n\t\treturn clone;\n\t}\n\n\t_split(index) {\n\t\tif (this.byStart[index] || this.byEnd[index]) return;\n\n\t\tif (DEBUG) this.stats.time('_split');\n\n\t\tlet chunk = this.lastSearchedChunk;\n\t\tconst searchForward = index > chunk.end;\n\n\t\twhile (chunk) {\n\t\t\tif (chunk.contains(index)) return this._splitChunk(chunk, index);\n\n\t\t\tchunk = searchForward ? this.byStart[chunk.end] : this.byEnd[chunk.start];\n\t\t}\n\t}\n\n\t_splitChunk(chunk, index) {\n\t\tif (chunk.edited && chunk.content.length) {\n\t\t\t// zero-length edited chunks are a special case (overlapping replacements)\n\t\t\tconst loc = getLocator(this.original)(index);\n\t\t\tthrow new Error(\n\t\t\t\t`Cannot split a chunk that has already been edited (${loc.line}:${loc.column} – \"${\n\t\t\t\t\tchunk.original\n\t\t\t\t}\")`\n\t\t\t);\n\t\t}\n\n\t\tconst newChunk = chunk.split(index);\n\n\t\tthis.byEnd[index] = chunk;\n\t\tthis.byStart[index] = newChunk;\n\t\tthis.byEnd[newChunk.end] = newChunk;\n\n\t\tif (chunk === this.lastChunk) this.lastChunk = newChunk;\n\n\t\tthis.lastSearchedChunk = chunk;\n\t\tif (DEBUG) this.stats.timeEnd('_split');\n\t\treturn true;\n\t}\n\n\ttoString() {\n\t\tlet str = this.intro;\n\n\t\tlet chunk = this.firstChunk;\n\t\twhile (chunk) {\n\t\t\tstr += chunk.toString();\n\t\t\tchunk = chunk.next;\n\t\t}\n\n\t\treturn str + this.outro;\n\t}\n\n\tisEmpty() {\n\t\tlet chunk = this.firstChunk;\n\t\tdo {\n\t\t\tif (chunk.intro.length && chunk.intro.trim() ||\n\t\t\t\t\tchunk.content.length && chunk.content.trim() ||\n\t\t\t\t\tchunk.outro.length && chunk.outro.trim())\n\t\t\t\treturn false;\n\t\t} while (chunk = chunk.next);\n\t\treturn true;\n\t}\n\n\tlength() {\n\t\tlet chunk = this.firstChunk;\n\t\tlet length = 0;\n\t\tdo {\n\t\t\tlength += chunk.intro.length + chunk.content.length + chunk.outro.length;\n\t\t} while (chunk = chunk.next);\n\t\treturn length;\n\t}\n\n\ttrimLines() {\n\t\treturn this.trim('[\\\\r\\\\n]');\n\t}\n\n\ttrim(charType) {\n\t\treturn this.trimStart(charType).trimEnd(charType);\n\t}\n\n\ttrimEndAborted(charType) {\n\t\tconst rx = new RegExp((charType || '\\\\s') + '+$');\n\n\t\tthis.outro = this.outro.replace(rx, '');\n\t\tif (this.outro.length) return true;\n\n\t\tlet chunk = this.lastChunk;\n\n\t\tdo {\n\t\t\tconst end = chunk.end;\n\t\t\tconst aborted = chunk.trimEnd(rx);\n\n\t\t\t// if chunk was trimmed, we have a new lastChunk\n\t\t\tif (chunk.end !== end) {\n\t\t\t\tif (this.lastChunk === chunk) {\n\t\t\t\t\tthis.lastChunk = chunk.next;\n\t\t\t\t}\n\n\t\t\t\tthis.byEnd[chunk.end] = chunk;\n\t\t\t\tthis.byStart[chunk.next.start] = chunk.next;\n\t\t\t\tthis.byEnd[chunk.next.end] = chunk.next;\n\t\t\t}\n\n\t\t\tif (aborted) return true;\n\t\t\tchunk = chunk.previous;\n\t\t} while (chunk);\n\n\t\treturn false;\n\t}\n\n\ttrimEnd(charType) {\n\t\tthis.trimEndAborted(charType);\n\t\treturn this;\n\t}\n\ttrimStartAborted(charType) {\n\t\tconst rx = new RegExp('^' + (charType || '\\\\s') + '+');\n\n\t\tthis.intro = this.intro.replace(rx, '');\n\t\tif (this.intro.length) return true;\n\n\t\tlet chunk = this.firstChunk;\n\n\t\tdo {\n\t\t\tconst end = chunk.end;\n\t\t\tconst aborted = chunk.trimStart(rx);\n\n\t\t\tif (chunk.end !== end) {\n\t\t\t\t// special case...\n\t\t\t\tif (chunk === this.lastChunk) this.lastChunk = chunk.next;\n\n\t\t\t\tthis.byEnd[chunk.end] = chunk;\n\t\t\t\tthis.byStart[chunk.next.start] = chunk.next;\n\t\t\t\tthis.byEnd[chunk.next.end] = chunk.next;\n\t\t\t}\n\n\t\t\tif (aborted) return true;\n\t\t\tchunk = chunk.next;\n\t\t} while (chunk);\n\n\t\treturn false;\n\t}\n\n\ttrimStart(charType) {\n\t\tthis.trimStartAborted(charType);\n\t\treturn this;\n\t}\n}\n","import MagicString from './MagicString.js';\nimport SourceMap from './SourceMap.js';\nimport getRelativePath from './utils/getRelativePath.js';\nimport isObject from './utils/isObject.js';\nimport getLocator from './utils/getLocator.js';\nimport Mappings from './utils/Mappings.js';\n\nconst hasOwnProp = Object.prototype.hasOwnProperty;\n\nexport default class Bundle {\n\tconstructor(options = {}) {\n\t\tthis.intro = options.intro || '';\n\t\tthis.separator = options.separator !== undefined ? options.separator : '\\n';\n\t\tthis.sources = [];\n\t\tthis.uniqueSources = [];\n\t\tthis.uniqueSourceIndexByFilename = {};\n\t}\n\n\taddSource(source) {\n\t\tif (source instanceof MagicString) {\n\t\t\treturn this.addSource({\n\t\t\t\tcontent: source,\n\t\t\t\tfilename: source.filename,\n\t\t\t\tseparator: this.separator\n\t\t\t});\n\t\t}\n\n\t\tif (!isObject(source) || !source.content) {\n\t\t\tthrow new Error('bundle.addSource() takes an object with a `content` property, which should be an instance of MagicString, and an optional `filename`');\n\t\t}\n\n\t\t['filename', 'indentExclusionRanges', 'separator'].forEach(option => {\n\t\t\tif (!hasOwnProp.call(source, option)) source[option] = source.content[option];\n\t\t});\n\n\t\tif (source.separator === undefined) {\n\t\t\t// TODO there's a bunch of this sort of thing, needs cleaning up\n\t\t\tsource.separator = this.separator;\n\t\t}\n\n\t\tif (source.filename) {\n\t\t\tif (!hasOwnProp.call(this.uniqueSourceIndexByFilename, source.filename)) {\n\t\t\t\tthis.uniqueSourceIndexByFilename[source.filename] = this.uniqueSources.length;\n\t\t\t\tthis.uniqueSources.push({ filename: source.filename, content: source.content.original });\n\t\t\t} else {\n\t\t\t\tconst uniqueSource = this.uniqueSources[this.uniqueSourceIndexByFilename[source.filename]];\n\t\t\t\tif (source.content.original !== uniqueSource.content) {\n\t\t\t\t\tthrow new Error(`Illegal source: same filename (${source.filename}), different contents`);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tthis.sources.push(source);\n\t\treturn this;\n\t}\n\n\tappend(str, options) {\n\t\tthis.addSource({\n\t\t\tcontent: new MagicString(str),\n\t\t\tseparator: (options && options.separator) || ''\n\t\t});\n\n\t\treturn this;\n\t}\n\n\tclone() {\n\t\tconst bundle = new Bundle({\n\t\t\tintro: this.intro,\n\t\t\tseparator: this.separator\n\t\t});\n\n\t\tthis.sources.forEach(source => {\n\t\t\tbundle.addSource({\n\t\t\t\tfilename: source.filename,\n\t\t\t\tcontent: source.content.clone(),\n\t\t\t\tseparator: source.separator\n\t\t\t});\n\t\t});\n\n\t\treturn bundle;\n\t}\n\n\tgenerateDecodedMap(options = {}) {\n\t\tconst names = [];\n\t\tthis.sources.forEach(source => {\n\t\t\tObject.keys(source.content.storedNames).forEach(name => {\n\t\t\t\tif (!~names.indexOf(name)) names.push(name);\n\t\t\t});\n\t\t});\n\n\t\tconst mappings = new Mappings(options.hires);\n\n\t\tif (this.intro) {\n\t\t\tmappings.advance(this.intro);\n\t\t}\n\n\t\tthis.sources.forEach((source, i) => {\n\t\t\tif (i > 0) {\n\t\t\t\tmappings.advance(this.separator);\n\t\t\t}\n\n\t\t\tconst sourceIndex = source.filename ? this.uniqueSourceIndexByFilename[source.filename] : -1;\n\t\t\tconst magicString = source.content;\n\t\t\tconst locate = getLocator(magicString.original);\n\n\t\t\tif (magicString.intro) {\n\t\t\t\tmappings.advance(magicString.intro);\n\t\t\t}\n\n\t\t\tmagicString.firstChunk.eachNext(chunk => {\n\t\t\t\tconst loc = locate(chunk.start);\n\n\t\t\t\tif (chunk.intro.length) mappings.advance(chunk.intro);\n\n\t\t\t\tif (source.filename) {\n\t\t\t\t\tif (chunk.edited) {\n\t\t\t\t\t\tmappings.addEdit(\n\t\t\t\t\t\t\tsourceIndex,\n\t\t\t\t\t\t\tchunk.content,\n\t\t\t\t\t\t\tloc,\n\t\t\t\t\t\t\tchunk.storeName ? names.indexOf(chunk.original) : -1\n\t\t\t\t\t\t);\n\t\t\t\t\t} else {\n\t\t\t\t\t\tmappings.addUneditedChunk(\n\t\t\t\t\t\t\tsourceIndex,\n\t\t\t\t\t\t\tchunk,\n\t\t\t\t\t\t\tmagicString.original,\n\t\t\t\t\t\t\tloc,\n\t\t\t\t\t\t\tmagicString.sourcemapLocations\n\t\t\t\t\t\t);\n\t\t\t\t\t}\n\t\t\t\t} else {\n\t\t\t\t\tmappings.advance(chunk.content);\n\t\t\t\t}\n\n\t\t\t\tif (chunk.outro.length) mappings.advance(chunk.outro);\n\t\t\t});\n\n\t\t\tif (magicString.outro) {\n\t\t\t\tmappings.advance(magicString.outro);\n\t\t\t}\n\t\t});\n\n\t\treturn {\n\t\t\tfile: options.file ? options.file.split(/[/\\\\]/).pop() : null,\n\t\t\tsources: this.uniqueSources.map(source => {\n\t\t\t\treturn options.file ? getRelativePath(options.file, source.filename) : source.filename;\n\t\t\t}),\n\t\t\tsourcesContent: this.uniqueSources.map(source => {\n\t\t\t\treturn options.includeContent ? source.content : null;\n\t\t\t}),\n\t\t\tnames,\n\t\t\tmappings: mappings.raw\n\t\t};\n\t}\n\n\tgenerateMap(options) {\n\t\treturn new SourceMap(this.generateDecodedMap(options));\n\t}\n\n\tgetIndentString() {\n\t\tconst indentStringCounts = {};\n\n\t\tthis.sources.forEach(source => {\n\t\t\tconst indentStr = source.content.indentStr;\n\n\t\t\tif (indentStr === null) return;\n\n\t\t\tif (!indentStringCounts[indentStr]) indentStringCounts[indentStr] = 0;\n\t\t\tindentStringCounts[indentStr] += 1;\n\t\t});\n\n\t\treturn (\n\t\t\tObject.keys(indentStringCounts).sort((a, b) => {\n\t\t\t\treturn indentStringCounts[a] - indentStringCounts[b];\n\t\t\t})[0] || '\\t'\n\t\t);\n\t}\n\n\tindent(indentStr) {\n\t\tif (!arguments.length) {\n\t\t\tindentStr = this.getIndentString();\n\t\t}\n\n\t\tif (indentStr === '') return this; // noop\n\n\t\tlet trailingNewline = !this.intro || this.intro.slice(-1) === '\\n';\n\n\t\tthis.sources.forEach((source, i) => {\n\t\t\tconst separator = source.separator !== undefined ? source.separator : this.separator;\n\t\t\tconst indentStart = trailingNewline || (i > 0 && /\\r?\\n$/.test(separator));\n\n\t\t\tsource.content.indent(indentStr, {\n\t\t\t\texclude: source.indentExclusionRanges,\n\t\t\t\tindentStart //: trailingNewline || /\\r?\\n$/.test( separator ) //true///\\r?\\n/.test( separator )\n\t\t\t});\n\n\t\t\ttrailingNewline = source.content.lastChar() === '\\n';\n\t\t});\n\n\t\tif (this.intro) {\n\t\t\tthis.intro =\n\t\t\t\tindentStr +\n\t\t\t\tthis.intro.replace(/^[^\\n]/gm, (match, index) => {\n\t\t\t\t\treturn index > 0 ? indentStr + match : match;\n\t\t\t\t});\n\t\t}\n\n\t\treturn this;\n\t}\n\n\tprepend(str) {\n\t\tthis.intro = str + this.intro;\n\t\treturn this;\n\t}\n\n\ttoString() {\n\t\tconst body = this.sources\n\t\t\t.map((source, i) => {\n\t\t\t\tconst separator = source.separator !== undefined ? source.separator : this.separator;\n\t\t\t\tconst str = (i > 0 ? separator : '') + source.content.toString();\n\n\t\t\t\treturn str;\n\t\t\t})\n\t\t\t.join('');\n\n\t\treturn this.intro + body;\n\t}\n\n\tisEmpty () {\n\t\tif (this.intro.length && this.intro.trim())\n\t\t\treturn false;\n\t\tif (this.sources.some(source => !source.content.isEmpty()))\n\t\t\treturn false;\n\t\treturn true;\n\t}\n\n\tlength() {\n\t\treturn this.sources.reduce((length, source) => length + source.content.length(), this.intro.length);\n\t}\n\n\ttrimLines() {\n\t\treturn this.trim('[\\\\r\\\\n]');\n\t}\n\n\ttrim(charType) {\n\t\treturn this.trimStart(charType).trimEnd(charType);\n\t}\n\n\ttrimStart(charType) {\n\t\tconst rx = new RegExp('^' + (charType || '\\\\s') + '+');\n\t\tthis.intro = this.intro.replace(rx, '');\n\n\t\tif (!this.intro) {\n\t\t\tlet source;\n\t\t\tlet i = 0;\n\n\t\t\tdo {\n\t\t\t\tsource = this.sources[i++];\n\t\t\t\tif (!source) {\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t} while (!source.content.trimStartAborted(charType));\n\t\t}\n\n\t\treturn this;\n\t}\n\n\ttrimEnd(charType) {\n\t\tconst rx = new RegExp((charType || '\\\\s') + '+$');\n\n\t\tlet source;\n\t\tlet i = this.sources.length - 1;\n\n\t\tdo {\n\t\t\tsource = this.sources[i--];\n\t\t\tif (!source) {\n\t\t\t\tthis.intro = this.intro.replace(rx, '');\n\t\t\t\tbreak;\n\t\t\t}\n\t\t} while (!source.content.trimEndAborted(charType));\n\n\t\treturn this;\n\t}\n}\n"],"names":["const","let","this"],"mappings":"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"}
@@ -4,6 +4,20 @@
4
4
  (global = global || self, global.MagicString = factory());
5
5
  }(this, function () { 'use strict';
6
6
 
7
+ var BitSet = function BitSet(arg) {
8
+ this.bits = arg instanceof BitSet ? arg.bits.slice() : [];
9
+ };
10
+
11
+ BitSet.prototype.add = function add (n) {
12
+ this.bits[Math.floor(n / BITS)] |= 1 << n % BITS;
13
+ };
14
+
15
+ BitSet.prototype.has = function has (n) {
16
+ return !!(this.bits[Math.floor(n / BITS)] & (1 << n % BITS));
17
+ };
18
+
19
+ var BITS = 32;
20
+
7
21
  var Chunk = function Chunk(start, end, content) {
8
22
  this.start = start;
9
23
  this.end = end;
@@ -343,7 +357,7 @@
343
357
  var first = true;
344
358
 
345
359
  while (originalCharIndex < chunk.end) {
346
- if (this.hires || first || sourcemapLocations[originalCharIndex]) {
360
+ if (this.hires || first || sourcemapLocations.has(originalCharIndex)) {
347
361
  this.rawSegments.push([this.generatedCodeColumn, sourceIndex, loc.line, loc.column]);
348
362
  }
349
363
 
@@ -353,16 +367,19 @@
353
367
  this.generatedCodeLine += 1;
354
368
  this.raw[this.generatedCodeLine] = this.rawSegments = [];
355
369
  this.generatedCodeColumn = 0;
370
+ first = true;
356
371
  } else {
357
372
  loc.column += 1;
358
373
  this.generatedCodeColumn += 1;
374
+ first = false;
359
375
  }
360
376
 
361
377
  originalCharIndex += 1;
362
- first = false;
363
378
  }
364
379
 
365
- this.pending = [this.generatedCodeColumn, sourceIndex, loc.line, loc.column];
380
+ this.pending = sourceIndex > 0
381
+ ? [this.generatedCodeColumn, sourceIndex, loc.line, loc.column]
382
+ : null;
366
383
  };
367
384
 
368
385
  Mappings.prototype.advance = function advance (str) {
@@ -405,7 +422,7 @@
405
422
  byEnd: { writable: true, value: {} },
406
423
  filename: { writable: true, value: options.filename },
407
424
  indentExclusionRanges: { writable: true, value: options.indentExclusionRanges },
408
- sourcemapLocations: { writable: true, value: {} },
425
+ sourcemapLocations: { writable: true, value: new BitSet() },
409
426
  storedNames: { writable: true, value: {} },
410
427
  indentStr: { writable: true, value: guessIndent(string) }
411
428
  });
@@ -415,7 +432,7 @@
415
432
  };
416
433
 
417
434
  MagicString.prototype.addSourcemapLocation = function addSourcemapLocation (char) {
418
- this.sourcemapLocations[char] = true;
435
+ this.sourcemapLocations.add(char);
419
436
  };
420
437
 
421
438
  MagicString.prototype.append = function append (content) {
@@ -484,9 +501,10 @@
484
501
  cloned.indentExclusionRanges = this.indentExclusionRanges.slice();
485
502
  }
486
503
 
487
- Object.keys(this.sourcemapLocations).forEach(function (loc) {
488
- cloned.sourcemapLocations[loc] = true;
489
- });
504
+ cloned.sourcemapLocations = new BitSet(this.sourcemapLocations);
505
+
506
+ cloned.intro = this.intro;
507
+ cloned.outro = this.outro;
490
508
 
491
509
  return cloned;
492
510
  };
@@ -1346,6 +1364,7 @@
1346
1364
  };
1347
1365
 
1348
1366
  MagicString.Bundle = Bundle;
1367
+ MagicString.SourceMap = SourceMap;
1349
1368
  MagicString.default = MagicString; // work around TypeScript bug https://github.com/Rich-Harris/magic-string/pull/121
1350
1369
 
1351
1370
  return MagicString;
@@ -1 +1 @@
1
- {"version":3,"file":"magic-string.umd.js","sources":["../src/Chunk.js","../node_modules/sourcemap-codec/dist/sourcemap-codec.es.js","../src/SourceMap.js","../src/utils/guessIndent.js","../src/utils/getRelativePath.js","../src/utils/isObject.js","../src/utils/getLocator.js","../src/utils/Mappings.js","../src/MagicString.js","../src/Bundle.js","../src/index-legacy.js"],"sourcesContent":["export default class Chunk {\n\tconstructor(start, end, content) {\n\t\tthis.start = start;\n\t\tthis.end = end;\n\t\tthis.original = content;\n\n\t\tthis.intro = '';\n\t\tthis.outro = '';\n\n\t\tthis.content = content;\n\t\tthis.storeName = false;\n\t\tthis.edited = false;\n\n\t\t// we make these non-enumerable, for sanity while debugging\n\t\tObject.defineProperties(this, {\n\t\t\tprevious: { writable: true, value: null },\n\t\t\tnext: { writable: true, value: null }\n\t\t});\n\t}\n\n\tappendLeft(content) {\n\t\tthis.outro += content;\n\t}\n\n\tappendRight(content) {\n\t\tthis.intro = this.intro + content;\n\t}\n\n\tclone() {\n\t\tconst chunk = new Chunk(this.start, this.end, this.original);\n\n\t\tchunk.intro = this.intro;\n\t\tchunk.outro = this.outro;\n\t\tchunk.content = this.content;\n\t\tchunk.storeName = this.storeName;\n\t\tchunk.edited = this.edited;\n\n\t\treturn chunk;\n\t}\n\n\tcontains(index) {\n\t\treturn this.start < index && index < this.end;\n\t}\n\n\teachNext(fn) {\n\t\tlet chunk = this;\n\t\twhile (chunk) {\n\t\t\tfn(chunk);\n\t\t\tchunk = chunk.next;\n\t\t}\n\t}\n\n\teachPrevious(fn) {\n\t\tlet chunk = this;\n\t\twhile (chunk) {\n\t\t\tfn(chunk);\n\t\t\tchunk = chunk.previous;\n\t\t}\n\t}\n\n\tedit(content, storeName, contentOnly) {\n\t\tthis.content = content;\n\t\tif (!contentOnly) {\n\t\t\tthis.intro = '';\n\t\t\tthis.outro = '';\n\t\t}\n\t\tthis.storeName = storeName;\n\n\t\tthis.edited = true;\n\n\t\treturn this;\n\t}\n\n\tprependLeft(content) {\n\t\tthis.outro = content + this.outro;\n\t}\n\n\tprependRight(content) {\n\t\tthis.intro = content + this.intro;\n\t}\n\n\tsplit(index) {\n\t\tconst sliceIndex = index - this.start;\n\n\t\tconst originalBefore = this.original.slice(0, sliceIndex);\n\t\tconst originalAfter = this.original.slice(sliceIndex);\n\n\t\tthis.original = originalBefore;\n\n\t\tconst newChunk = new Chunk(index, this.end, originalAfter);\n\t\tnewChunk.outro = this.outro;\n\t\tthis.outro = '';\n\n\t\tthis.end = index;\n\n\t\tif (this.edited) {\n\t\t\t// TODO is this block necessary?...\n\t\t\tnewChunk.edit('', false);\n\t\t\tthis.content = '';\n\t\t} else {\n\t\t\tthis.content = originalBefore;\n\t\t}\n\n\t\tnewChunk.next = this.next;\n\t\tif (newChunk.next) newChunk.next.previous = newChunk;\n\t\tnewChunk.previous = this;\n\t\tthis.next = newChunk;\n\n\t\treturn newChunk;\n\t}\n\n\ttoString() {\n\t\treturn this.intro + this.content + this.outro;\n\t}\n\n\ttrimEnd(rx) {\n\t\tthis.outro = this.outro.replace(rx, '');\n\t\tif (this.outro.length) return true;\n\n\t\tconst trimmed = this.content.replace(rx, '');\n\n\t\tif (trimmed.length) {\n\t\t\tif (trimmed !== this.content) {\n\t\t\t\tthis.split(this.start + trimmed.length).edit('', undefined, true);\n\t\t\t}\n\t\t\treturn true;\n\n\t\t} else {\n\t\t\tthis.edit('', undefined, true);\n\n\t\t\tthis.intro = this.intro.replace(rx, '');\n\t\t\tif (this.intro.length) return true;\n\t\t}\n\t}\n\n\ttrimStart(rx) {\n\t\tthis.intro = this.intro.replace(rx, '');\n\t\tif (this.intro.length) return true;\n\n\t\tconst trimmed = this.content.replace(rx, '');\n\n\t\tif (trimmed.length) {\n\t\t\tif (trimmed !== this.content) {\n\t\t\t\tthis.split(this.end - trimmed.length);\n\t\t\t\tthis.edit('', undefined, true);\n\t\t\t}\n\t\t\treturn true;\n\n\t\t} else {\n\t\t\tthis.edit('', undefined, true);\n\n\t\t\tthis.outro = this.outro.replace(rx, '');\n\t\t\tif (this.outro.length) return true;\n\t\t}\n\t}\n}\n","var charToInteger = {};\nvar chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=';\nfor (var i = 0; i < chars.length; i++) {\n charToInteger[chars.charCodeAt(i)] = i;\n}\nfunction decode(mappings) {\n var generatedCodeColumn = 0; // first field\n var sourceFileIndex = 0; // second field\n var sourceCodeLine = 0; // third field\n var sourceCodeColumn = 0; // fourth field\n var nameIndex = 0; // fifth field\n var decoded = [];\n var line = [];\n var segment = [];\n for (var i = 0, j = 0, shift = 0, value = 0, len = mappings.length; i < len; i++) {\n var c = mappings.charCodeAt(i);\n if (c === 44) { // \",\"\n if (segment.length)\n line.push(new Int32Array(segment));\n segment = [];\n j = 0;\n }\n else if (c === 59) { // \";\"\n if (segment.length)\n line.push(new Int32Array(segment));\n segment = [];\n j = 0;\n decoded.push(line);\n line = [];\n generatedCodeColumn = 0;\n }\n else {\n var integer = charToInteger[c];\n if (integer === undefined) {\n throw new Error('Invalid character (' + String.fromCharCode(c) + ')');\n }\n var hasContinuationBit = integer & 32;\n integer &= 31;\n value += integer << shift;\n if (hasContinuationBit) {\n shift += 5;\n }\n else {\n var shouldNegate = value & 1;\n value >>= 1;\n var num = shouldNegate ? -value : value;\n if (j == 0) {\n generatedCodeColumn += num;\n segment.push(generatedCodeColumn);\n }\n else if (j === 1) {\n sourceFileIndex += num;\n segment.push(sourceFileIndex);\n }\n else if (j === 2) {\n sourceCodeLine += num;\n segment.push(sourceCodeLine);\n }\n else if (j === 3) {\n sourceCodeColumn += num;\n segment.push(sourceCodeColumn);\n }\n else if (j === 4) {\n nameIndex += num;\n segment.push(nameIndex);\n }\n j++;\n value = shift = 0; // reset\n }\n }\n }\n if (segment.length)\n line.push(new Int32Array(segment));\n decoded.push(line);\n return decoded;\n}\nfunction encode(decoded) {\n var sourceFileIndex = 0; // second field\n var sourceCodeLine = 0; // third field\n var sourceCodeColumn = 0; // fourth field\n var nameIndex = 0; // fifth field\n var mappings = '';\n for (var i = 0; i < decoded.length; i++) {\n var line = decoded[i];\n if (i > 0)\n mappings += ';';\n if (line.length === 0)\n continue;\n var generatedCodeColumn = 0; // first field\n var lineMappings = [];\n for (var _i = 0, line_1 = line; _i < line_1.length; _i++) {\n var segment = line_1[_i];\n var segmentMappings = encodeInteger(segment[0] - generatedCodeColumn);\n generatedCodeColumn = segment[0];\n if (segment.length > 1) {\n segmentMappings +=\n encodeInteger(segment[1] - sourceFileIndex) +\n encodeInteger(segment[2] - sourceCodeLine) +\n encodeInteger(segment[3] - sourceCodeColumn);\n sourceFileIndex = segment[1];\n sourceCodeLine = segment[2];\n sourceCodeColumn = segment[3];\n }\n if (segment.length === 5) {\n segmentMappings += encodeInteger(segment[4] - nameIndex);\n nameIndex = segment[4];\n }\n lineMappings.push(segmentMappings);\n }\n mappings += lineMappings.join(',');\n }\n return mappings;\n}\nfunction encodeInteger(num) {\n var result = '';\n num = num < 0 ? (-num << 1) | 1 : num << 1;\n do {\n var clamped = num & 31;\n num >>= 5;\n if (num > 0) {\n clamped |= 32;\n }\n result += chars[clamped];\n } while (num > 0);\n return result;\n}\n\nexport { decode, encode };\n//# sourceMappingURL=sourcemap-codec.es.js.map\n","import { encode } from 'sourcemap-codec';\n\nlet btoa = () => {\n\tthrow new Error('Unsupported environment: `window.btoa` or `Buffer` should be supported.');\n};\nif (typeof window !== 'undefined' && typeof window.btoa === 'function') {\n\tbtoa = str => window.btoa(unescape(encodeURIComponent(str)));\n} else if (typeof Buffer === 'function') {\n\tbtoa = str => Buffer.from(str, 'utf-8').toString('base64');\n}\n\nexport default class SourceMap {\n\tconstructor(properties) {\n\t\tthis.version = 3;\n\t\tthis.file = properties.file;\n\t\tthis.sources = properties.sources;\n\t\tthis.sourcesContent = properties.sourcesContent;\n\t\tthis.names = properties.names;\n\t\tthis.mappings = encode(properties.mappings);\n\t}\n\n\ttoString() {\n\t\treturn JSON.stringify(this);\n\t}\n\n\ttoUrl() {\n\t\treturn 'data:application/json;charset=utf-8;base64,' + btoa(this.toString());\n\t}\n}\n","export default function guessIndent(code) {\n\tconst lines = code.split('\\n');\n\n\tconst tabbed = lines.filter(line => /^\\t+/.test(line));\n\tconst spaced = lines.filter(line => /^ {2,}/.test(line));\n\n\tif (tabbed.length === 0 && spaced.length === 0) {\n\t\treturn null;\n\t}\n\n\t// More lines tabbed than spaced? Assume tabs, and\n\t// default to tabs in the case of a tie (or nothing\n\t// to go on)\n\tif (tabbed.length >= spaced.length) {\n\t\treturn '\\t';\n\t}\n\n\t// Otherwise, we need to guess the multiple\n\tconst min = spaced.reduce((previous, current) => {\n\t\tconst numSpaces = /^ +/.exec(current)[0].length;\n\t\treturn Math.min(numSpaces, previous);\n\t}, Infinity);\n\n\treturn new Array(min + 1).join(' ');\n}\n","export default function getRelativePath(from, to) {\n\tconst fromParts = from.split(/[/\\\\]/);\n\tconst toParts = to.split(/[/\\\\]/);\n\n\tfromParts.pop(); // get dirname\n\n\twhile (fromParts[0] === toParts[0]) {\n\t\tfromParts.shift();\n\t\ttoParts.shift();\n\t}\n\n\tif (fromParts.length) {\n\t\tlet i = fromParts.length;\n\t\twhile (i--) fromParts[i] = '..';\n\t}\n\n\treturn fromParts.concat(toParts).join('/');\n}\n","const toString = Object.prototype.toString;\n\nexport default function isObject(thing) {\n\treturn toString.call(thing) === '[object Object]';\n}\n","export default function getLocator(source) {\n\tconst originalLines = source.split('\\n');\n\tconst lineOffsets = [];\n\n\tfor (let i = 0, pos = 0; i < originalLines.length; i++) {\n\t\tlineOffsets.push(pos);\n\t\tpos += originalLines[i].length + 1;\n\t}\n\n\treturn function locate(index) {\n\t\tlet i = 0;\n\t\tlet j = lineOffsets.length;\n\t\twhile (i < j) {\n\t\t\tconst m = (i + j) >> 1;\n\t\t\tif (index < lineOffsets[m]) {\n\t\t\t\tj = m;\n\t\t\t} else {\n\t\t\t\ti = m + 1;\n\t\t\t}\n\t\t}\n\t\tconst line = i - 1;\n\t\tconst column = index - lineOffsets[line];\n\t\treturn { line, column };\n\t};\n}\n","export default class Mappings {\n\tconstructor(hires) {\n\t\tthis.hires = hires;\n\t\tthis.generatedCodeLine = 0;\n\t\tthis.generatedCodeColumn = 0;\n\t\tthis.raw = [];\n\t\tthis.rawSegments = this.raw[this.generatedCodeLine] = [];\n\t\tthis.pending = null;\n\t}\n\n\taddEdit(sourceIndex, content, loc, nameIndex) {\n\t\tif (content.length) {\n\t\t\tconst segment = [this.generatedCodeColumn, sourceIndex, loc.line, loc.column];\n\t\t\tif (nameIndex >= 0) {\n\t\t\t\tsegment.push(nameIndex);\n\t\t\t}\n\t\t\tthis.rawSegments.push(segment);\n\t\t} else if (this.pending) {\n\t\t\tthis.rawSegments.push(this.pending);\n\t\t}\n\n\t\tthis.advance(content);\n\t\tthis.pending = null;\n\t}\n\n\taddUneditedChunk(sourceIndex, chunk, original, loc, sourcemapLocations) {\n\t\tlet originalCharIndex = chunk.start;\n\t\tlet first = true;\n\n\t\twhile (originalCharIndex < chunk.end) {\n\t\t\tif (this.hires || first || sourcemapLocations[originalCharIndex]) {\n\t\t\t\tthis.rawSegments.push([this.generatedCodeColumn, sourceIndex, loc.line, loc.column]);\n\t\t\t}\n\n\t\t\tif (original[originalCharIndex] === '\\n') {\n\t\t\t\tloc.line += 1;\n\t\t\t\tloc.column = 0;\n\t\t\t\tthis.generatedCodeLine += 1;\n\t\t\t\tthis.raw[this.generatedCodeLine] = this.rawSegments = [];\n\t\t\t\tthis.generatedCodeColumn = 0;\n\t\t\t} else {\n\t\t\t\tloc.column += 1;\n\t\t\t\tthis.generatedCodeColumn += 1;\n\t\t\t}\n\n\t\t\toriginalCharIndex += 1;\n\t\t\tfirst = false;\n\t\t}\n\n\t\tthis.pending = [this.generatedCodeColumn, sourceIndex, loc.line, loc.column];\n\t}\n\n\tadvance(str) {\n\t\tif (!str) return;\n\n\t\tconst lines = str.split('\\n');\n\n\t\tif (lines.length > 1) {\n\t\t\tfor (let i = 0; i < lines.length - 1; i++) {\n\t\t\t\tthis.generatedCodeLine++;\n\t\t\t\tthis.raw[this.generatedCodeLine] = this.rawSegments = [];\n\t\t\t}\n\t\t\tthis.generatedCodeColumn = 0;\n\t\t}\n\n\t\tthis.generatedCodeColumn += lines[lines.length - 1].length;\n\t}\n}\n","import Chunk from './Chunk.js';\nimport SourceMap from './SourceMap.js';\nimport guessIndent from './utils/guessIndent.js';\nimport getRelativePath from './utils/getRelativePath.js';\nimport isObject from './utils/isObject.js';\nimport getLocator from './utils/getLocator.js';\nimport Mappings from './utils/Mappings.js';\nimport Stats from './utils/Stats.js';\n\nconst n = '\\n';\n\nconst warned = {\n\tinsertLeft: false,\n\tinsertRight: false,\n\tstoreName: false\n};\n\nexport default class MagicString {\n\tconstructor(string, options = {}) {\n\t\tconst chunk = new Chunk(0, string.length, string);\n\n\t\tObject.defineProperties(this, {\n\t\t\toriginal: { writable: true, value: string },\n\t\t\toutro: { writable: true, value: '' },\n\t\t\tintro: { writable: true, value: '' },\n\t\t\tfirstChunk: { writable: true, value: chunk },\n\t\t\tlastChunk: { writable: true, value: chunk },\n\t\t\tlastSearchedChunk: { writable: true, value: chunk },\n\t\t\tbyStart: { writable: true, value: {} },\n\t\t\tbyEnd: { writable: true, value: {} },\n\t\t\tfilename: { writable: true, value: options.filename },\n\t\t\tindentExclusionRanges: { writable: true, value: options.indentExclusionRanges },\n\t\t\tsourcemapLocations: { writable: true, value: {} },\n\t\t\tstoredNames: { writable: true, value: {} },\n\t\t\tindentStr: { writable: true, value: guessIndent(string) }\n\t\t});\n\n\t\tif (DEBUG) {\n\t\t\tObject.defineProperty(this, 'stats', { value: new Stats() });\n\t\t}\n\n\t\tthis.byStart[0] = chunk;\n\t\tthis.byEnd[string.length] = chunk;\n\t}\n\n\taddSourcemapLocation(char) {\n\t\tthis.sourcemapLocations[char] = true;\n\t}\n\n\tappend(content) {\n\t\tif (typeof content !== 'string') throw new TypeError('outro content must be a string');\n\n\t\tthis.outro += content;\n\t\treturn this;\n\t}\n\n\tappendLeft(index, content) {\n\t\tif (typeof content !== 'string') throw new TypeError('inserted content must be a string');\n\n\t\tif (DEBUG) this.stats.time('appendLeft');\n\n\t\tthis._split(index);\n\n\t\tconst chunk = this.byEnd[index];\n\n\t\tif (chunk) {\n\t\t\tchunk.appendLeft(content);\n\t\t} else {\n\t\t\tthis.intro += content;\n\t\t}\n\n\t\tif (DEBUG) this.stats.timeEnd('appendLeft');\n\t\treturn this;\n\t}\n\n\tappendRight(index, content) {\n\t\tif (typeof content !== 'string') throw new TypeError('inserted content must be a string');\n\n\t\tif (DEBUG) this.stats.time('appendRight');\n\n\t\tthis._split(index);\n\n\t\tconst chunk = this.byStart[index];\n\n\t\tif (chunk) {\n\t\t\tchunk.appendRight(content);\n\t\t} else {\n\t\t\tthis.outro += content;\n\t\t}\n\n\t\tif (DEBUG) this.stats.timeEnd('appendRight');\n\t\treturn this;\n\t}\n\n\tclone() {\n\t\tconst cloned = new MagicString(this.original, { filename: this.filename });\n\n\t\tlet originalChunk = this.firstChunk;\n\t\tlet clonedChunk = (cloned.firstChunk = cloned.lastSearchedChunk = originalChunk.clone());\n\n\t\twhile (originalChunk) {\n\t\t\tcloned.byStart[clonedChunk.start] = clonedChunk;\n\t\t\tcloned.byEnd[clonedChunk.end] = clonedChunk;\n\n\t\t\tconst nextOriginalChunk = originalChunk.next;\n\t\t\tconst nextClonedChunk = nextOriginalChunk && nextOriginalChunk.clone();\n\n\t\t\tif (nextClonedChunk) {\n\t\t\t\tclonedChunk.next = nextClonedChunk;\n\t\t\t\tnextClonedChunk.previous = clonedChunk;\n\n\t\t\t\tclonedChunk = nextClonedChunk;\n\t\t\t}\n\n\t\t\toriginalChunk = nextOriginalChunk;\n\t\t}\n\n\t\tcloned.lastChunk = clonedChunk;\n\n\t\tif (this.indentExclusionRanges) {\n\t\t\tcloned.indentExclusionRanges = this.indentExclusionRanges.slice();\n\t\t}\n\n\t\tObject.keys(this.sourcemapLocations).forEach(loc => {\n\t\t\tcloned.sourcemapLocations[loc] = true;\n\t\t});\n\n\t\treturn cloned;\n\t}\n\n\tgenerateDecodedMap(options) {\n\t\toptions = options || {};\n\n\t\tconst sourceIndex = 0;\n\t\tconst names = Object.keys(this.storedNames);\n\t\tconst mappings = new Mappings(options.hires);\n\n\t\tconst locate = getLocator(this.original);\n\n\t\tif (this.intro) {\n\t\t\tmappings.advance(this.intro);\n\t\t}\n\n\t\tthis.firstChunk.eachNext(chunk => {\n\t\t\tconst loc = locate(chunk.start);\n\n\t\t\tif (chunk.intro.length) mappings.advance(chunk.intro);\n\n\t\t\tif (chunk.edited) {\n\t\t\t\tmappings.addEdit(\n\t\t\t\t\tsourceIndex,\n\t\t\t\t\tchunk.content,\n\t\t\t\t\tloc,\n\t\t\t\t\tchunk.storeName ? names.indexOf(chunk.original) : -1\n\t\t\t\t);\n\t\t\t} else {\n\t\t\t\tmappings.addUneditedChunk(sourceIndex, chunk, this.original, loc, this.sourcemapLocations);\n\t\t\t}\n\n\t\t\tif (chunk.outro.length) mappings.advance(chunk.outro);\n\t\t});\n\n\t\treturn {\n\t\t\tfile: options.file ? options.file.split(/[/\\\\]/).pop() : null,\n\t\t\tsources: [options.source ? getRelativePath(options.file || '', options.source) : null],\n\t\t\tsourcesContent: options.includeContent ? [this.original] : [null],\n\t\t\tnames,\n\t\t\tmappings: mappings.raw\n\t\t};\n\t}\n\n\tgenerateMap(options) {\n\t\treturn new SourceMap(this.generateDecodedMap(options));\n\t}\n\n\tgetIndentString() {\n\t\treturn this.indentStr === null ? '\\t' : this.indentStr;\n\t}\n\n\tindent(indentStr, options) {\n\t\tconst pattern = /^[^\\r\\n]/gm;\n\n\t\tif (isObject(indentStr)) {\n\t\t\toptions = indentStr;\n\t\t\tindentStr = undefined;\n\t\t}\n\n\t\tindentStr = indentStr !== undefined ? indentStr : this.indentStr || '\\t';\n\n\t\tif (indentStr === '') return this; // noop\n\n\t\toptions = options || {};\n\n\t\t// Process exclusion ranges\n\t\tconst isExcluded = {};\n\n\t\tif (options.exclude) {\n\t\t\tconst exclusions =\n\t\t\t\ttypeof options.exclude[0] === 'number' ? [options.exclude] : options.exclude;\n\t\t\texclusions.forEach(exclusion => {\n\t\t\t\tfor (let i = exclusion[0]; i < exclusion[1]; i += 1) {\n\t\t\t\t\tisExcluded[i] = true;\n\t\t\t\t}\n\t\t\t});\n\t\t}\n\n\t\tlet shouldIndentNextCharacter = options.indentStart !== false;\n\t\tconst replacer = match => {\n\t\t\tif (shouldIndentNextCharacter) return `${indentStr}${match}`;\n\t\t\tshouldIndentNextCharacter = true;\n\t\t\treturn match;\n\t\t};\n\n\t\tthis.intro = this.intro.replace(pattern, replacer);\n\n\t\tlet charIndex = 0;\n\t\tlet chunk = this.firstChunk;\n\n\t\twhile (chunk) {\n\t\t\tconst end = chunk.end;\n\n\t\t\tif (chunk.edited) {\n\t\t\t\tif (!isExcluded[charIndex]) {\n\t\t\t\t\tchunk.content = chunk.content.replace(pattern, replacer);\n\n\t\t\t\t\tif (chunk.content.length) {\n\t\t\t\t\t\tshouldIndentNextCharacter = chunk.content[chunk.content.length - 1] === '\\n';\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tcharIndex = chunk.start;\n\n\t\t\t\twhile (charIndex < end) {\n\t\t\t\t\tif (!isExcluded[charIndex]) {\n\t\t\t\t\t\tconst char = this.original[charIndex];\n\n\t\t\t\t\t\tif (char === '\\n') {\n\t\t\t\t\t\t\tshouldIndentNextCharacter = true;\n\t\t\t\t\t\t} else if (char !== '\\r' && shouldIndentNextCharacter) {\n\t\t\t\t\t\t\tshouldIndentNextCharacter = false;\n\n\t\t\t\t\t\t\tif (charIndex === chunk.start) {\n\t\t\t\t\t\t\t\tchunk.prependRight(indentStr);\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tthis._splitChunk(chunk, charIndex);\n\t\t\t\t\t\t\t\tchunk = chunk.next;\n\t\t\t\t\t\t\t\tchunk.prependRight(indentStr);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\tcharIndex += 1;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tcharIndex = chunk.end;\n\t\t\tchunk = chunk.next;\n\t\t}\n\n\t\tthis.outro = this.outro.replace(pattern, replacer);\n\n\t\treturn this;\n\t}\n\n\tinsert() {\n\t\tthrow new Error('magicString.insert(...) is deprecated. Use prependRight(...) or appendLeft(...)');\n\t}\n\n\tinsertLeft(index, content) {\n\t\tif (!warned.insertLeft) {\n\t\t\tconsole.warn('magicString.insertLeft(...) is deprecated. Use magicString.appendLeft(...) instead'); // eslint-disable-line no-console\n\t\t\twarned.insertLeft = true;\n\t\t}\n\n\t\treturn this.appendLeft(index, content);\n\t}\n\n\tinsertRight(index, content) {\n\t\tif (!warned.insertRight) {\n\t\t\tconsole.warn('magicString.insertRight(...) is deprecated. Use magicString.prependRight(...) instead'); // eslint-disable-line no-console\n\t\t\twarned.insertRight = true;\n\t\t}\n\n\t\treturn this.prependRight(index, content);\n\t}\n\n\tmove(start, end, index) {\n\t\tif (index >= start && index <= end) throw new Error('Cannot move a selection inside itself');\n\n\t\tif (DEBUG) this.stats.time('move');\n\n\t\tthis._split(start);\n\t\tthis._split(end);\n\t\tthis._split(index);\n\n\t\tconst first = this.byStart[start];\n\t\tconst last = this.byEnd[end];\n\n\t\tconst oldLeft = first.previous;\n\t\tconst oldRight = last.next;\n\n\t\tconst newRight = this.byStart[index];\n\t\tif (!newRight && last === this.lastChunk) return this;\n\t\tconst newLeft = newRight ? newRight.previous : this.lastChunk;\n\n\t\tif (oldLeft) oldLeft.next = oldRight;\n\t\tif (oldRight) oldRight.previous = oldLeft;\n\n\t\tif (newLeft) newLeft.next = first;\n\t\tif (newRight) newRight.previous = last;\n\n\t\tif (!first.previous) this.firstChunk = last.next;\n\t\tif (!last.next) {\n\t\t\tthis.lastChunk = first.previous;\n\t\t\tthis.lastChunk.next = null;\n\t\t}\n\n\t\tfirst.previous = newLeft;\n\t\tlast.next = newRight || null;\n\n\t\tif (!newLeft) this.firstChunk = first;\n\t\tif (!newRight) this.lastChunk = last;\n\n\t\tif (DEBUG) this.stats.timeEnd('move');\n\t\treturn this;\n\t}\n\n\toverwrite(start, end, content, options) {\n\t\tif (typeof content !== 'string') throw new TypeError('replacement content must be a string');\n\n\t\twhile (start < 0) start += this.original.length;\n\t\twhile (end < 0) end += this.original.length;\n\n\t\tif (end > this.original.length) throw new Error('end is out of bounds');\n\t\tif (start === end)\n\t\t\tthrow new Error('Cannot overwrite a zero-length range – use appendLeft or prependRight instead');\n\n\t\tif (DEBUG) this.stats.time('overwrite');\n\n\t\tthis._split(start);\n\t\tthis._split(end);\n\n\t\tif (options === true) {\n\t\t\tif (!warned.storeName) {\n\t\t\t\tconsole.warn('The final argument to magicString.overwrite(...) should be an options object. See https://github.com/rich-harris/magic-string'); // eslint-disable-line no-console\n\t\t\t\twarned.storeName = true;\n\t\t\t}\n\n\t\t\toptions = { storeName: true };\n\t\t}\n\t\tconst storeName = options !== undefined ? options.storeName : false;\n\t\tconst contentOnly = options !== undefined ? options.contentOnly : false;\n\n\t\tif (storeName) {\n\t\t\tconst original = this.original.slice(start, end);\n\t\t\tthis.storedNames[original] = true;\n\t\t}\n\n\t\tconst first = this.byStart[start];\n\t\tconst last = this.byEnd[end];\n\n\t\tif (first) {\n\t\t\tif (end > first.end && first.next !== this.byStart[first.end]) {\n\t\t\t\tthrow new Error('Cannot overwrite across a split point');\n\t\t\t}\n\n\t\t\tfirst.edit(content, storeName, contentOnly);\n\n\t\t\tif (first !== last) {\n\t\t\t\tlet chunk = first.next;\n\t\t\t\twhile (chunk !== last) {\n\t\t\t\t\tchunk.edit('', false);\n\t\t\t\t\tchunk = chunk.next;\n\t\t\t\t}\n\n\t\t\t\tchunk.edit('', false);\n\t\t\t}\n\t\t} else {\n\t\t\t// must be inserting at the end\n\t\t\tconst newChunk = new Chunk(start, end, '').edit(content, storeName);\n\n\t\t\t// TODO last chunk in the array may not be the last chunk, if it's moved...\n\t\t\tlast.next = newChunk;\n\t\t\tnewChunk.previous = last;\n\t\t}\n\n\t\tif (DEBUG) this.stats.timeEnd('overwrite');\n\t\treturn this;\n\t}\n\n\tprepend(content) {\n\t\tif (typeof content !== 'string') throw new TypeError('outro content must be a string');\n\n\t\tthis.intro = content + this.intro;\n\t\treturn this;\n\t}\n\n\tprependLeft(index, content) {\n\t\tif (typeof content !== 'string') throw new TypeError('inserted content must be a string');\n\n\t\tif (DEBUG) this.stats.time('insertRight');\n\n\t\tthis._split(index);\n\n\t\tconst chunk = this.byEnd[index];\n\n\t\tif (chunk) {\n\t\t\tchunk.prependLeft(content);\n\t\t} else {\n\t\t\tthis.intro = content + this.intro;\n\t\t}\n\n\t\tif (DEBUG) this.stats.timeEnd('insertRight');\n\t\treturn this;\n\t}\n\n\tprependRight(index, content) {\n\t\tif (typeof content !== 'string') throw new TypeError('inserted content must be a string');\n\n\t\tif (DEBUG) this.stats.time('insertRight');\n\n\t\tthis._split(index);\n\n\t\tconst chunk = this.byStart[index];\n\n\t\tif (chunk) {\n\t\t\tchunk.prependRight(content);\n\t\t} else {\n\t\t\tthis.outro = content + this.outro;\n\t\t}\n\n\t\tif (DEBUG) this.stats.timeEnd('insertRight');\n\t\treturn this;\n\t}\n\n\tremove(start, end) {\n\t\twhile (start < 0) start += this.original.length;\n\t\twhile (end < 0) end += this.original.length;\n\n\t\tif (start === end) return this;\n\n\t\tif (start < 0 || end > this.original.length) throw new Error('Character is out of bounds');\n\t\tif (start > end) throw new Error('end must be greater than start');\n\n\t\tif (DEBUG) this.stats.time('remove');\n\n\t\tthis._split(start);\n\t\tthis._split(end);\n\n\t\tlet chunk = this.byStart[start];\n\n\t\twhile (chunk) {\n\t\t\tchunk.intro = '';\n\t\t\tchunk.outro = '';\n\t\t\tchunk.edit('');\n\n\t\t\tchunk = end > chunk.end ? this.byStart[chunk.end] : null;\n\t\t}\n\n\t\tif (DEBUG) this.stats.timeEnd('remove');\n\t\treturn this;\n\t}\n\n\tlastChar() {\n\t\tif (this.outro.length)\n\t\t\treturn this.outro[this.outro.length - 1];\n\t\tlet chunk = this.lastChunk;\n\t\tdo {\n\t\t\tif (chunk.outro.length)\n\t\t\t\treturn chunk.outro[chunk.outro.length - 1];\n\t\t\tif (chunk.content.length)\n\t\t\t\treturn chunk.content[chunk.content.length - 1];\n\t\t\tif (chunk.intro.length)\n\t\t\t\treturn chunk.intro[chunk.intro.length - 1];\n\t\t} while (chunk = chunk.previous);\n\t\tif (this.intro.length)\n\t\t\treturn this.intro[this.intro.length - 1];\n\t\treturn '';\n\t}\n\n\tlastLine() {\n\t\tlet lineIndex = this.outro.lastIndexOf(n);\n\t\tif (lineIndex !== -1)\n\t\t\treturn this.outro.substr(lineIndex + 1);\n\t\tlet lineStr = this.outro;\n\t\tlet chunk = this.lastChunk;\n\t\tdo {\n\t\t\tif (chunk.outro.length > 0) {\n\t\t\t\tlineIndex = chunk.outro.lastIndexOf(n);\n\t\t\t\tif (lineIndex !== -1)\n\t\t\t\t\treturn chunk.outro.substr(lineIndex + 1) + lineStr;\n\t\t\t\tlineStr = chunk.outro + lineStr;\n\t\t\t}\n\n\t\t\tif (chunk.content.length > 0) {\n\t\t\t\tlineIndex = chunk.content.lastIndexOf(n);\n\t\t\t\tif (lineIndex !== -1)\n\t\t\t\t\treturn chunk.content.substr(lineIndex + 1) + lineStr;\n\t\t\t\tlineStr = chunk.content + lineStr;\n\t\t\t}\n\n\t\t\tif (chunk.intro.length > 0) {\n\t\t\t\tlineIndex = chunk.intro.lastIndexOf(n);\n\t\t\t\tif (lineIndex !== -1)\n\t\t\t\t\treturn chunk.intro.substr(lineIndex + 1) + lineStr;\n\t\t\t\tlineStr = chunk.intro + lineStr;\n\t\t\t}\n\t\t} while (chunk = chunk.previous);\n\t\tlineIndex = this.intro.lastIndexOf(n);\n\t\tif (lineIndex !== -1)\n\t\t\treturn this.intro.substr(lineIndex + 1) + lineStr;\n\t\treturn this.intro + lineStr;\n\t}\n\n\tslice(start = 0, end = this.original.length) {\n\t\twhile (start < 0) start += this.original.length;\n\t\twhile (end < 0) end += this.original.length;\n\n\t\tlet result = '';\n\n\t\t// find start chunk\n\t\tlet chunk = this.firstChunk;\n\t\twhile (chunk && (chunk.start > start || chunk.end <= start)) {\n\t\t\t// found end chunk before start\n\t\t\tif (chunk.start < end && chunk.end >= end) {\n\t\t\t\treturn result;\n\t\t\t}\n\n\t\t\tchunk = chunk.next;\n\t\t}\n\n\t\tif (chunk && chunk.edited && chunk.start !== start)\n\t\t\tthrow new Error(`Cannot use replaced character ${start} as slice start anchor.`);\n\n\t\tconst startChunk = chunk;\n\t\twhile (chunk) {\n\t\t\tif (chunk.intro && (startChunk !== chunk || chunk.start === start)) {\n\t\t\t\tresult += chunk.intro;\n\t\t\t}\n\n\t\t\tconst containsEnd = chunk.start < end && chunk.end >= end;\n\t\t\tif (containsEnd && chunk.edited && chunk.end !== end)\n\t\t\t\tthrow new Error(`Cannot use replaced character ${end} as slice end anchor.`);\n\n\t\t\tconst sliceStart = startChunk === chunk ? start - chunk.start : 0;\n\t\t\tconst sliceEnd = containsEnd ? chunk.content.length + end - chunk.end : chunk.content.length;\n\n\t\t\tresult += chunk.content.slice(sliceStart, sliceEnd);\n\n\t\t\tif (chunk.outro && (!containsEnd || chunk.end === end)) {\n\t\t\t\tresult += chunk.outro;\n\t\t\t}\n\n\t\t\tif (containsEnd) {\n\t\t\t\tbreak;\n\t\t\t}\n\n\t\t\tchunk = chunk.next;\n\t\t}\n\n\t\treturn result;\n\t}\n\n\t// TODO deprecate this? not really very useful\n\tsnip(start, end) {\n\t\tconst clone = this.clone();\n\t\tclone.remove(0, start);\n\t\tclone.remove(end, clone.original.length);\n\n\t\treturn clone;\n\t}\n\n\t_split(index) {\n\t\tif (this.byStart[index] || this.byEnd[index]) return;\n\n\t\tif (DEBUG) this.stats.time('_split');\n\n\t\tlet chunk = this.lastSearchedChunk;\n\t\tconst searchForward = index > chunk.end;\n\n\t\twhile (chunk) {\n\t\t\tif (chunk.contains(index)) return this._splitChunk(chunk, index);\n\n\t\t\tchunk = searchForward ? this.byStart[chunk.end] : this.byEnd[chunk.start];\n\t\t}\n\t}\n\n\t_splitChunk(chunk, index) {\n\t\tif (chunk.edited && chunk.content.length) {\n\t\t\t// zero-length edited chunks are a special case (overlapping replacements)\n\t\t\tconst loc = getLocator(this.original)(index);\n\t\t\tthrow new Error(\n\t\t\t\t`Cannot split a chunk that has already been edited (${loc.line}:${loc.column} – \"${\n\t\t\t\t\tchunk.original\n\t\t\t\t}\")`\n\t\t\t);\n\t\t}\n\n\t\tconst newChunk = chunk.split(index);\n\n\t\tthis.byEnd[index] = chunk;\n\t\tthis.byStart[index] = newChunk;\n\t\tthis.byEnd[newChunk.end] = newChunk;\n\n\t\tif (chunk === this.lastChunk) this.lastChunk = newChunk;\n\n\t\tthis.lastSearchedChunk = chunk;\n\t\tif (DEBUG) this.stats.timeEnd('_split');\n\t\treturn true;\n\t}\n\n\ttoString() {\n\t\tlet str = this.intro;\n\n\t\tlet chunk = this.firstChunk;\n\t\twhile (chunk) {\n\t\t\tstr += chunk.toString();\n\t\t\tchunk = chunk.next;\n\t\t}\n\n\t\treturn str + this.outro;\n\t}\n\n\tisEmpty() {\n\t\tlet chunk = this.firstChunk;\n\t\tdo {\n\t\t\tif (chunk.intro.length && chunk.intro.trim() ||\n\t\t\t\t\tchunk.content.length && chunk.content.trim() ||\n\t\t\t\t\tchunk.outro.length && chunk.outro.trim())\n\t\t\t\treturn false;\n\t\t} while (chunk = chunk.next);\n\t\treturn true;\n\t}\n\n\tlength() {\n\t\tlet chunk = this.firstChunk;\n\t\tlet length = 0;\n\t\tdo {\n\t\t\tlength += chunk.intro.length + chunk.content.length + chunk.outro.length;\n\t\t} while (chunk = chunk.next);\n\t\treturn length;\n\t}\n\n\ttrimLines() {\n\t\treturn this.trim('[\\\\r\\\\n]');\n\t}\n\n\ttrim(charType) {\n\t\treturn this.trimStart(charType).trimEnd(charType);\n\t}\n\n\ttrimEndAborted(charType) {\n\t\tconst rx = new RegExp((charType || '\\\\s') + '+$');\n\n\t\tthis.outro = this.outro.replace(rx, '');\n\t\tif (this.outro.length) return true;\n\n\t\tlet chunk = this.lastChunk;\n\n\t\tdo {\n\t\t\tconst end = chunk.end;\n\t\t\tconst aborted = chunk.trimEnd(rx);\n\n\t\t\t// if chunk was trimmed, we have a new lastChunk\n\t\t\tif (chunk.end !== end) {\n\t\t\t\tif (this.lastChunk === chunk) {\n\t\t\t\t\tthis.lastChunk = chunk.next;\n\t\t\t\t}\n\n\t\t\t\tthis.byEnd[chunk.end] = chunk;\n\t\t\t\tthis.byStart[chunk.next.start] = chunk.next;\n\t\t\t\tthis.byEnd[chunk.next.end] = chunk.next;\n\t\t\t}\n\n\t\t\tif (aborted) return true;\n\t\t\tchunk = chunk.previous;\n\t\t} while (chunk);\n\n\t\treturn false;\n\t}\n\n\ttrimEnd(charType) {\n\t\tthis.trimEndAborted(charType);\n\t\treturn this;\n\t}\n\ttrimStartAborted(charType) {\n\t\tconst rx = new RegExp('^' + (charType || '\\\\s') + '+');\n\n\t\tthis.intro = this.intro.replace(rx, '');\n\t\tif (this.intro.length) return true;\n\n\t\tlet chunk = this.firstChunk;\n\n\t\tdo {\n\t\t\tconst end = chunk.end;\n\t\t\tconst aborted = chunk.trimStart(rx);\n\n\t\t\tif (chunk.end !== end) {\n\t\t\t\t// special case...\n\t\t\t\tif (chunk === this.lastChunk) this.lastChunk = chunk.next;\n\n\t\t\t\tthis.byEnd[chunk.end] = chunk;\n\t\t\t\tthis.byStart[chunk.next.start] = chunk.next;\n\t\t\t\tthis.byEnd[chunk.next.end] = chunk.next;\n\t\t\t}\n\n\t\t\tif (aborted) return true;\n\t\t\tchunk = chunk.next;\n\t\t} while (chunk);\n\n\t\treturn false;\n\t}\n\n\ttrimStart(charType) {\n\t\tthis.trimStartAborted(charType);\n\t\treturn this;\n\t}\n}\n","import MagicString from './MagicString.js';\nimport SourceMap from './SourceMap.js';\nimport getRelativePath from './utils/getRelativePath.js';\nimport isObject from './utils/isObject.js';\nimport getLocator from './utils/getLocator.js';\nimport Mappings from './utils/Mappings.js';\n\nconst hasOwnProp = Object.prototype.hasOwnProperty;\n\nexport default class Bundle {\n\tconstructor(options = {}) {\n\t\tthis.intro = options.intro || '';\n\t\tthis.separator = options.separator !== undefined ? options.separator : '\\n';\n\t\tthis.sources = [];\n\t\tthis.uniqueSources = [];\n\t\tthis.uniqueSourceIndexByFilename = {};\n\t}\n\n\taddSource(source) {\n\t\tif (source instanceof MagicString) {\n\t\t\treturn this.addSource({\n\t\t\t\tcontent: source,\n\t\t\t\tfilename: source.filename,\n\t\t\t\tseparator: this.separator\n\t\t\t});\n\t\t}\n\n\t\tif (!isObject(source) || !source.content) {\n\t\t\tthrow new Error('bundle.addSource() takes an object with a `content` property, which should be an instance of MagicString, and an optional `filename`');\n\t\t}\n\n\t\t['filename', 'indentExclusionRanges', 'separator'].forEach(option => {\n\t\t\tif (!hasOwnProp.call(source, option)) source[option] = source.content[option];\n\t\t});\n\n\t\tif (source.separator === undefined) {\n\t\t\t// TODO there's a bunch of this sort of thing, needs cleaning up\n\t\t\tsource.separator = this.separator;\n\t\t}\n\n\t\tif (source.filename) {\n\t\t\tif (!hasOwnProp.call(this.uniqueSourceIndexByFilename, source.filename)) {\n\t\t\t\tthis.uniqueSourceIndexByFilename[source.filename] = this.uniqueSources.length;\n\t\t\t\tthis.uniqueSources.push({ filename: source.filename, content: source.content.original });\n\t\t\t} else {\n\t\t\t\tconst uniqueSource = this.uniqueSources[this.uniqueSourceIndexByFilename[source.filename]];\n\t\t\t\tif (source.content.original !== uniqueSource.content) {\n\t\t\t\t\tthrow new Error(`Illegal source: same filename (${source.filename}), different contents`);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tthis.sources.push(source);\n\t\treturn this;\n\t}\n\n\tappend(str, options) {\n\t\tthis.addSource({\n\t\t\tcontent: new MagicString(str),\n\t\t\tseparator: (options && options.separator) || ''\n\t\t});\n\n\t\treturn this;\n\t}\n\n\tclone() {\n\t\tconst bundle = new Bundle({\n\t\t\tintro: this.intro,\n\t\t\tseparator: this.separator\n\t\t});\n\n\t\tthis.sources.forEach(source => {\n\t\t\tbundle.addSource({\n\t\t\t\tfilename: source.filename,\n\t\t\t\tcontent: source.content.clone(),\n\t\t\t\tseparator: source.separator\n\t\t\t});\n\t\t});\n\n\t\treturn bundle;\n\t}\n\n\tgenerateDecodedMap(options = {}) {\n\t\tconst names = [];\n\t\tthis.sources.forEach(source => {\n\t\t\tObject.keys(source.content.storedNames).forEach(name => {\n\t\t\t\tif (!~names.indexOf(name)) names.push(name);\n\t\t\t});\n\t\t});\n\n\t\tconst mappings = new Mappings(options.hires);\n\n\t\tif (this.intro) {\n\t\t\tmappings.advance(this.intro);\n\t\t}\n\n\t\tthis.sources.forEach((source, i) => {\n\t\t\tif (i > 0) {\n\t\t\t\tmappings.advance(this.separator);\n\t\t\t}\n\n\t\t\tconst sourceIndex = source.filename ? this.uniqueSourceIndexByFilename[source.filename] : -1;\n\t\t\tconst magicString = source.content;\n\t\t\tconst locate = getLocator(magicString.original);\n\n\t\t\tif (magicString.intro) {\n\t\t\t\tmappings.advance(magicString.intro);\n\t\t\t}\n\n\t\t\tmagicString.firstChunk.eachNext(chunk => {\n\t\t\t\tconst loc = locate(chunk.start);\n\n\t\t\t\tif (chunk.intro.length) mappings.advance(chunk.intro);\n\n\t\t\t\tif (source.filename) {\n\t\t\t\t\tif (chunk.edited) {\n\t\t\t\t\t\tmappings.addEdit(\n\t\t\t\t\t\t\tsourceIndex,\n\t\t\t\t\t\t\tchunk.content,\n\t\t\t\t\t\t\tloc,\n\t\t\t\t\t\t\tchunk.storeName ? names.indexOf(chunk.original) : -1\n\t\t\t\t\t\t);\n\t\t\t\t\t} else {\n\t\t\t\t\t\tmappings.addUneditedChunk(\n\t\t\t\t\t\t\tsourceIndex,\n\t\t\t\t\t\t\tchunk,\n\t\t\t\t\t\t\tmagicString.original,\n\t\t\t\t\t\t\tloc,\n\t\t\t\t\t\t\tmagicString.sourcemapLocations\n\t\t\t\t\t\t);\n\t\t\t\t\t}\n\t\t\t\t} else {\n\t\t\t\t\tmappings.advance(chunk.content);\n\t\t\t\t}\n\n\t\t\t\tif (chunk.outro.length) mappings.advance(chunk.outro);\n\t\t\t});\n\n\t\t\tif (magicString.outro) {\n\t\t\t\tmappings.advance(magicString.outro);\n\t\t\t}\n\t\t});\n\n\t\treturn {\n\t\t\tfile: options.file ? options.file.split(/[/\\\\]/).pop() : null,\n\t\t\tsources: this.uniqueSources.map(source => {\n\t\t\t\treturn options.file ? getRelativePath(options.file, source.filename) : source.filename;\n\t\t\t}),\n\t\t\tsourcesContent: this.uniqueSources.map(source => {\n\t\t\t\treturn options.includeContent ? source.content : null;\n\t\t\t}),\n\t\t\tnames,\n\t\t\tmappings: mappings.raw\n\t\t};\n\t}\n\n\tgenerateMap(options) {\n\t\treturn new SourceMap(this.generateDecodedMap(options));\n\t}\n\n\tgetIndentString() {\n\t\tconst indentStringCounts = {};\n\n\t\tthis.sources.forEach(source => {\n\t\t\tconst indentStr = source.content.indentStr;\n\n\t\t\tif (indentStr === null) return;\n\n\t\t\tif (!indentStringCounts[indentStr]) indentStringCounts[indentStr] = 0;\n\t\t\tindentStringCounts[indentStr] += 1;\n\t\t});\n\n\t\treturn (\n\t\t\tObject.keys(indentStringCounts).sort((a, b) => {\n\t\t\t\treturn indentStringCounts[a] - indentStringCounts[b];\n\t\t\t})[0] || '\\t'\n\t\t);\n\t}\n\n\tindent(indentStr) {\n\t\tif (!arguments.length) {\n\t\t\tindentStr = this.getIndentString();\n\t\t}\n\n\t\tif (indentStr === '') return this; // noop\n\n\t\tlet trailingNewline = !this.intro || this.intro.slice(-1) === '\\n';\n\n\t\tthis.sources.forEach((source, i) => {\n\t\t\tconst separator = source.separator !== undefined ? source.separator : this.separator;\n\t\t\tconst indentStart = trailingNewline || (i > 0 && /\\r?\\n$/.test(separator));\n\n\t\t\tsource.content.indent(indentStr, {\n\t\t\t\texclude: source.indentExclusionRanges,\n\t\t\t\tindentStart //: trailingNewline || /\\r?\\n$/.test( separator ) //true///\\r?\\n/.test( separator )\n\t\t\t});\n\n\t\t\ttrailingNewline = source.content.lastChar() === '\\n';\n\t\t});\n\n\t\tif (this.intro) {\n\t\t\tthis.intro =\n\t\t\t\tindentStr +\n\t\t\t\tthis.intro.replace(/^[^\\n]/gm, (match, index) => {\n\t\t\t\t\treturn index > 0 ? indentStr + match : match;\n\t\t\t\t});\n\t\t}\n\n\t\treturn this;\n\t}\n\n\tprepend(str) {\n\t\tthis.intro = str + this.intro;\n\t\treturn this;\n\t}\n\n\ttoString() {\n\t\tconst body = this.sources\n\t\t\t.map((source, i) => {\n\t\t\t\tconst separator = source.separator !== undefined ? source.separator : this.separator;\n\t\t\t\tconst str = (i > 0 ? separator : '') + source.content.toString();\n\n\t\t\t\treturn str;\n\t\t\t})\n\t\t\t.join('');\n\n\t\treturn this.intro + body;\n\t}\n\n\tisEmpty () {\n\t\tif (this.intro.length && this.intro.trim())\n\t\t\treturn false;\n\t\tif (this.sources.some(source => !source.content.isEmpty()))\n\t\t\treturn false;\n\t\treturn true;\n\t}\n\n\tlength() {\n\t\treturn this.sources.reduce((length, source) => length + source.content.length(), this.intro.length);\n\t}\n\n\ttrimLines() {\n\t\treturn this.trim('[\\\\r\\\\n]');\n\t}\n\n\ttrim(charType) {\n\t\treturn this.trimStart(charType).trimEnd(charType);\n\t}\n\n\ttrimStart(charType) {\n\t\tconst rx = new RegExp('^' + (charType || '\\\\s') + '+');\n\t\tthis.intro = this.intro.replace(rx, '');\n\n\t\tif (!this.intro) {\n\t\t\tlet source;\n\t\t\tlet i = 0;\n\n\t\t\tdo {\n\t\t\t\tsource = this.sources[i++];\n\t\t\t\tif (!source) {\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t} while (!source.content.trimStartAborted(charType));\n\t\t}\n\n\t\treturn this;\n\t}\n\n\ttrimEnd(charType) {\n\t\tconst rx = new RegExp((charType || '\\\\s') + '+$');\n\n\t\tlet source;\n\t\tlet i = this.sources.length - 1;\n\n\t\tdo {\n\t\t\tsource = this.sources[i--];\n\t\t\tif (!source) {\n\t\t\t\tthis.intro = this.intro.replace(rx, '');\n\t\t\t\tbreak;\n\t\t\t}\n\t\t} while (!source.content.trimEndAborted(charType));\n\n\t\treturn this;\n\t}\n}\n","import MagicString from './MagicString.js';\nimport Bundle from './Bundle.js';\n\nMagicString.Bundle = Bundle;\nMagicString.default = MagicString; // work around TypeScript bug https://github.com/Rich-Harris/magic-string/pull/121\n\nexport default MagicString;\n"],"names":["const","let","this"],"mappings":"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"}
1
+ {"version":3,"file":"magic-string.umd.js","sources":["../src/BitSet.js","../src/Chunk.js","../node_modules/sourcemap-codec/dist/sourcemap-codec.es.js","../src/SourceMap.js","../src/utils/guessIndent.js","../src/utils/getRelativePath.js","../src/utils/isObject.js","../src/utils/getLocator.js","../src/utils/Mappings.js","../src/MagicString.js","../src/Bundle.js","../src/index-legacy.js"],"sourcesContent":["export default class BitSet {\n\tconstructor(arg) {\n\t\tthis.bits = arg instanceof BitSet ? arg.bits.slice() : [];\n\t}\n\n\tadd(n) {\n\t\tthis.bits[Math.floor(n / BITS)] |= 1 << n % BITS;\n\t}\n\n\thas(n) {\n\t\treturn !!(this.bits[Math.floor(n / BITS)] & (1 << n % BITS));\n\t}\n}\n\nconst BITS = 32;\n","export default class Chunk {\n\tconstructor(start, end, content) {\n\t\tthis.start = start;\n\t\tthis.end = end;\n\t\tthis.original = content;\n\n\t\tthis.intro = '';\n\t\tthis.outro = '';\n\n\t\tthis.content = content;\n\t\tthis.storeName = false;\n\t\tthis.edited = false;\n\n\t\t// we make these non-enumerable, for sanity while debugging\n\t\tObject.defineProperties(this, {\n\t\t\tprevious: { writable: true, value: null },\n\t\t\tnext: { writable: true, value: null }\n\t\t});\n\t}\n\n\tappendLeft(content) {\n\t\tthis.outro += content;\n\t}\n\n\tappendRight(content) {\n\t\tthis.intro = this.intro + content;\n\t}\n\n\tclone() {\n\t\tconst chunk = new Chunk(this.start, this.end, this.original);\n\n\t\tchunk.intro = this.intro;\n\t\tchunk.outro = this.outro;\n\t\tchunk.content = this.content;\n\t\tchunk.storeName = this.storeName;\n\t\tchunk.edited = this.edited;\n\n\t\treturn chunk;\n\t}\n\n\tcontains(index) {\n\t\treturn this.start < index && index < this.end;\n\t}\n\n\teachNext(fn) {\n\t\tlet chunk = this;\n\t\twhile (chunk) {\n\t\t\tfn(chunk);\n\t\t\tchunk = chunk.next;\n\t\t}\n\t}\n\n\teachPrevious(fn) {\n\t\tlet chunk = this;\n\t\twhile (chunk) {\n\t\t\tfn(chunk);\n\t\t\tchunk = chunk.previous;\n\t\t}\n\t}\n\n\tedit(content, storeName, contentOnly) {\n\t\tthis.content = content;\n\t\tif (!contentOnly) {\n\t\t\tthis.intro = '';\n\t\t\tthis.outro = '';\n\t\t}\n\t\tthis.storeName = storeName;\n\n\t\tthis.edited = true;\n\n\t\treturn this;\n\t}\n\n\tprependLeft(content) {\n\t\tthis.outro = content + this.outro;\n\t}\n\n\tprependRight(content) {\n\t\tthis.intro = content + this.intro;\n\t}\n\n\tsplit(index) {\n\t\tconst sliceIndex = index - this.start;\n\n\t\tconst originalBefore = this.original.slice(0, sliceIndex);\n\t\tconst originalAfter = this.original.slice(sliceIndex);\n\n\t\tthis.original = originalBefore;\n\n\t\tconst newChunk = new Chunk(index, this.end, originalAfter);\n\t\tnewChunk.outro = this.outro;\n\t\tthis.outro = '';\n\n\t\tthis.end = index;\n\n\t\tif (this.edited) {\n\t\t\t// TODO is this block necessary?...\n\t\t\tnewChunk.edit('', false);\n\t\t\tthis.content = '';\n\t\t} else {\n\t\t\tthis.content = originalBefore;\n\t\t}\n\n\t\tnewChunk.next = this.next;\n\t\tif (newChunk.next) newChunk.next.previous = newChunk;\n\t\tnewChunk.previous = this;\n\t\tthis.next = newChunk;\n\n\t\treturn newChunk;\n\t}\n\n\ttoString() {\n\t\treturn this.intro + this.content + this.outro;\n\t}\n\n\ttrimEnd(rx) {\n\t\tthis.outro = this.outro.replace(rx, '');\n\t\tif (this.outro.length) return true;\n\n\t\tconst trimmed = this.content.replace(rx, '');\n\n\t\tif (trimmed.length) {\n\t\t\tif (trimmed !== this.content) {\n\t\t\t\tthis.split(this.start + trimmed.length).edit('', undefined, true);\n\t\t\t}\n\t\t\treturn true;\n\n\t\t} else {\n\t\t\tthis.edit('', undefined, true);\n\n\t\t\tthis.intro = this.intro.replace(rx, '');\n\t\t\tif (this.intro.length) return true;\n\t\t}\n\t}\n\n\ttrimStart(rx) {\n\t\tthis.intro = this.intro.replace(rx, '');\n\t\tif (this.intro.length) return true;\n\n\t\tconst trimmed = this.content.replace(rx, '');\n\n\t\tif (trimmed.length) {\n\t\t\tif (trimmed !== this.content) {\n\t\t\t\tthis.split(this.end - trimmed.length);\n\t\t\t\tthis.edit('', undefined, true);\n\t\t\t}\n\t\t\treturn true;\n\n\t\t} else {\n\t\t\tthis.edit('', undefined, true);\n\n\t\t\tthis.outro = this.outro.replace(rx, '');\n\t\t\tif (this.outro.length) return true;\n\t\t}\n\t}\n}\n","var charToInteger = {};\nvar chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=';\nfor (var i = 0; i < chars.length; i++) {\n charToInteger[chars.charCodeAt(i)] = i;\n}\nfunction decode(mappings) {\n var generatedCodeColumn = 0; // first field\n var sourceFileIndex = 0; // second field\n var sourceCodeLine = 0; // third field\n var sourceCodeColumn = 0; // fourth field\n var nameIndex = 0; // fifth field\n var decoded = [];\n var line = [];\n var segment = [];\n for (var i = 0, j = 0, shift = 0, value = 0, len = mappings.length; i < len; i++) {\n var c = mappings.charCodeAt(i);\n if (c === 44) { // \",\"\n if (segment.length)\n line.push(new Int32Array(segment));\n segment = [];\n j = 0;\n }\n else if (c === 59) { // \";\"\n if (segment.length)\n line.push(new Int32Array(segment));\n segment = [];\n j = 0;\n decoded.push(line);\n line = [];\n generatedCodeColumn = 0;\n }\n else {\n var integer = charToInteger[c];\n if (integer === undefined) {\n throw new Error('Invalid character (' + String.fromCharCode(c) + ')');\n }\n var hasContinuationBit = integer & 32;\n integer &= 31;\n value += integer << shift;\n if (hasContinuationBit) {\n shift += 5;\n }\n else {\n var shouldNegate = value & 1;\n value >>= 1;\n var num = shouldNegate ? -value : value;\n if (j == 0) {\n generatedCodeColumn += num;\n segment.push(generatedCodeColumn);\n }\n else if (j === 1) {\n sourceFileIndex += num;\n segment.push(sourceFileIndex);\n }\n else if (j === 2) {\n sourceCodeLine += num;\n segment.push(sourceCodeLine);\n }\n else if (j === 3) {\n sourceCodeColumn += num;\n segment.push(sourceCodeColumn);\n }\n else if (j === 4) {\n nameIndex += num;\n segment.push(nameIndex);\n }\n j++;\n value = shift = 0; // reset\n }\n }\n }\n if (segment.length)\n line.push(new Int32Array(segment));\n decoded.push(line);\n return decoded;\n}\nfunction encode(decoded) {\n var sourceFileIndex = 0; // second field\n var sourceCodeLine = 0; // third field\n var sourceCodeColumn = 0; // fourth field\n var nameIndex = 0; // fifth field\n var mappings = '';\n for (var i = 0; i < decoded.length; i++) {\n var line = decoded[i];\n if (i > 0)\n mappings += ';';\n if (line.length === 0)\n continue;\n var generatedCodeColumn = 0; // first field\n var lineMappings = [];\n for (var _i = 0, line_1 = line; _i < line_1.length; _i++) {\n var segment = line_1[_i];\n var segmentMappings = encodeInteger(segment[0] - generatedCodeColumn);\n generatedCodeColumn = segment[0];\n if (segment.length > 1) {\n segmentMappings +=\n encodeInteger(segment[1] - sourceFileIndex) +\n encodeInteger(segment[2] - sourceCodeLine) +\n encodeInteger(segment[3] - sourceCodeColumn);\n sourceFileIndex = segment[1];\n sourceCodeLine = segment[2];\n sourceCodeColumn = segment[3];\n }\n if (segment.length === 5) {\n segmentMappings += encodeInteger(segment[4] - nameIndex);\n nameIndex = segment[4];\n }\n lineMappings.push(segmentMappings);\n }\n mappings += lineMappings.join(',');\n }\n return mappings;\n}\nfunction encodeInteger(num) {\n var result = '';\n num = num < 0 ? (-num << 1) | 1 : num << 1;\n do {\n var clamped = num & 31;\n num >>= 5;\n if (num > 0) {\n clamped |= 32;\n }\n result += chars[clamped];\n } while (num > 0);\n return result;\n}\n\nexport { decode, encode };\n//# sourceMappingURL=sourcemap-codec.es.js.map\n","import { encode } from 'sourcemap-codec';\n\nlet btoa = () => {\n\tthrow new Error('Unsupported environment: `window.btoa` or `Buffer` should be supported.');\n};\nif (typeof window !== 'undefined' && typeof window.btoa === 'function') {\n\tbtoa = str => window.btoa(unescape(encodeURIComponent(str)));\n} else if (typeof Buffer === 'function') {\n\tbtoa = str => Buffer.from(str, 'utf-8').toString('base64');\n}\n\nexport default class SourceMap {\n\tconstructor(properties) {\n\t\tthis.version = 3;\n\t\tthis.file = properties.file;\n\t\tthis.sources = properties.sources;\n\t\tthis.sourcesContent = properties.sourcesContent;\n\t\tthis.names = properties.names;\n\t\tthis.mappings = encode(properties.mappings);\n\t}\n\n\ttoString() {\n\t\treturn JSON.stringify(this);\n\t}\n\n\ttoUrl() {\n\t\treturn 'data:application/json;charset=utf-8;base64,' + btoa(this.toString());\n\t}\n}\n","export default function guessIndent(code) {\n\tconst lines = code.split('\\n');\n\n\tconst tabbed = lines.filter(line => /^\\t+/.test(line));\n\tconst spaced = lines.filter(line => /^ {2,}/.test(line));\n\n\tif (tabbed.length === 0 && spaced.length === 0) {\n\t\treturn null;\n\t}\n\n\t// More lines tabbed than spaced? Assume tabs, and\n\t// default to tabs in the case of a tie (or nothing\n\t// to go on)\n\tif (tabbed.length >= spaced.length) {\n\t\treturn '\\t';\n\t}\n\n\t// Otherwise, we need to guess the multiple\n\tconst min = spaced.reduce((previous, current) => {\n\t\tconst numSpaces = /^ +/.exec(current)[0].length;\n\t\treturn Math.min(numSpaces, previous);\n\t}, Infinity);\n\n\treturn new Array(min + 1).join(' ');\n}\n","export default function getRelativePath(from, to) {\n\tconst fromParts = from.split(/[/\\\\]/);\n\tconst toParts = to.split(/[/\\\\]/);\n\n\tfromParts.pop(); // get dirname\n\n\twhile (fromParts[0] === toParts[0]) {\n\t\tfromParts.shift();\n\t\ttoParts.shift();\n\t}\n\n\tif (fromParts.length) {\n\t\tlet i = fromParts.length;\n\t\twhile (i--) fromParts[i] = '..';\n\t}\n\n\treturn fromParts.concat(toParts).join('/');\n}\n","const toString = Object.prototype.toString;\n\nexport default function isObject(thing) {\n\treturn toString.call(thing) === '[object Object]';\n}\n","export default function getLocator(source) {\n\tconst originalLines = source.split('\\n');\n\tconst lineOffsets = [];\n\n\tfor (let i = 0, pos = 0; i < originalLines.length; i++) {\n\t\tlineOffsets.push(pos);\n\t\tpos += originalLines[i].length + 1;\n\t}\n\n\treturn function locate(index) {\n\t\tlet i = 0;\n\t\tlet j = lineOffsets.length;\n\t\twhile (i < j) {\n\t\t\tconst m = (i + j) >> 1;\n\t\t\tif (index < lineOffsets[m]) {\n\t\t\t\tj = m;\n\t\t\t} else {\n\t\t\t\ti = m + 1;\n\t\t\t}\n\t\t}\n\t\tconst line = i - 1;\n\t\tconst column = index - lineOffsets[line];\n\t\treturn { line, column };\n\t};\n}\n","export default class Mappings {\n\tconstructor(hires) {\n\t\tthis.hires = hires;\n\t\tthis.generatedCodeLine = 0;\n\t\tthis.generatedCodeColumn = 0;\n\t\tthis.raw = [];\n\t\tthis.rawSegments = this.raw[this.generatedCodeLine] = [];\n\t\tthis.pending = null;\n\t}\n\n\taddEdit(sourceIndex, content, loc, nameIndex) {\n\t\tif (content.length) {\n\t\t\tconst segment = [this.generatedCodeColumn, sourceIndex, loc.line, loc.column];\n\t\t\tif (nameIndex >= 0) {\n\t\t\t\tsegment.push(nameIndex);\n\t\t\t}\n\t\t\tthis.rawSegments.push(segment);\n\t\t} else if (this.pending) {\n\t\t\tthis.rawSegments.push(this.pending);\n\t\t}\n\n\t\tthis.advance(content);\n\t\tthis.pending = null;\n\t}\n\n\taddUneditedChunk(sourceIndex, chunk, original, loc, sourcemapLocations) {\n\t\tlet originalCharIndex = chunk.start;\n\t\tlet first = true;\n\n\t\twhile (originalCharIndex < chunk.end) {\n\t\t\tif (this.hires || first || sourcemapLocations.has(originalCharIndex)) {\n\t\t\t\tthis.rawSegments.push([this.generatedCodeColumn, sourceIndex, loc.line, loc.column]);\n\t\t\t}\n\n\t\t\tif (original[originalCharIndex] === '\\n') {\n\t\t\t\tloc.line += 1;\n\t\t\t\tloc.column = 0;\n\t\t\t\tthis.generatedCodeLine += 1;\n\t\t\t\tthis.raw[this.generatedCodeLine] = this.rawSegments = [];\n\t\t\t\tthis.generatedCodeColumn = 0;\n\t\t\t\tfirst = true;\n\t\t\t} else {\n\t\t\t\tloc.column += 1;\n\t\t\t\tthis.generatedCodeColumn += 1;\n\t\t\t\tfirst = false;\n\t\t\t}\n\n\t\t\toriginalCharIndex += 1;\n\t\t}\n\n\t\tthis.pending = sourceIndex > 0\n\t\t\t? [this.generatedCodeColumn, sourceIndex, loc.line, loc.column]\n\t\t\t: null;\n\t}\n\n\tadvance(str) {\n\t\tif (!str) return;\n\n\t\tconst lines = str.split('\\n');\n\n\t\tif (lines.length > 1) {\n\t\t\tfor (let i = 0; i < lines.length - 1; i++) {\n\t\t\t\tthis.generatedCodeLine++;\n\t\t\t\tthis.raw[this.generatedCodeLine] = this.rawSegments = [];\n\t\t\t}\n\t\t\tthis.generatedCodeColumn = 0;\n\t\t}\n\n\t\tthis.generatedCodeColumn += lines[lines.length - 1].length;\n\t}\n}\n","import BitSet from './BitSet.js';\nimport Chunk from './Chunk.js';\nimport SourceMap from './SourceMap.js';\nimport guessIndent from './utils/guessIndent.js';\nimport getRelativePath from './utils/getRelativePath.js';\nimport isObject from './utils/isObject.js';\nimport getLocator from './utils/getLocator.js';\nimport Mappings from './utils/Mappings.js';\nimport Stats from './utils/Stats.js';\n\nconst n = '\\n';\n\nconst warned = {\n\tinsertLeft: false,\n\tinsertRight: false,\n\tstoreName: false\n};\n\nexport default class MagicString {\n\tconstructor(string, options = {}) {\n\t\tconst chunk = new Chunk(0, string.length, string);\n\n\t\tObject.defineProperties(this, {\n\t\t\toriginal: { writable: true, value: string },\n\t\t\toutro: { writable: true, value: '' },\n\t\t\tintro: { writable: true, value: '' },\n\t\t\tfirstChunk: { writable: true, value: chunk },\n\t\t\tlastChunk: { writable: true, value: chunk },\n\t\t\tlastSearchedChunk: { writable: true, value: chunk },\n\t\t\tbyStart: { writable: true, value: {} },\n\t\t\tbyEnd: { writable: true, value: {} },\n\t\t\tfilename: { writable: true, value: options.filename },\n\t\t\tindentExclusionRanges: { writable: true, value: options.indentExclusionRanges },\n\t\t\tsourcemapLocations: { writable: true, value: new BitSet() },\n\t\t\tstoredNames: { writable: true, value: {} },\n\t\t\tindentStr: { writable: true, value: guessIndent(string) }\n\t\t});\n\n\t\tif (DEBUG) {\n\t\t\tObject.defineProperty(this, 'stats', { value: new Stats() });\n\t\t}\n\n\t\tthis.byStart[0] = chunk;\n\t\tthis.byEnd[string.length] = chunk;\n\t}\n\n\taddSourcemapLocation(char) {\n\t\tthis.sourcemapLocations.add(char);\n\t}\n\n\tappend(content) {\n\t\tif (typeof content !== 'string') throw new TypeError('outro content must be a string');\n\n\t\tthis.outro += content;\n\t\treturn this;\n\t}\n\n\tappendLeft(index, content) {\n\t\tif (typeof content !== 'string') throw new TypeError('inserted content must be a string');\n\n\t\tif (DEBUG) this.stats.time('appendLeft');\n\n\t\tthis._split(index);\n\n\t\tconst chunk = this.byEnd[index];\n\n\t\tif (chunk) {\n\t\t\tchunk.appendLeft(content);\n\t\t} else {\n\t\t\tthis.intro += content;\n\t\t}\n\n\t\tif (DEBUG) this.stats.timeEnd('appendLeft');\n\t\treturn this;\n\t}\n\n\tappendRight(index, content) {\n\t\tif (typeof content !== 'string') throw new TypeError('inserted content must be a string');\n\n\t\tif (DEBUG) this.stats.time('appendRight');\n\n\t\tthis._split(index);\n\n\t\tconst chunk = this.byStart[index];\n\n\t\tif (chunk) {\n\t\t\tchunk.appendRight(content);\n\t\t} else {\n\t\t\tthis.outro += content;\n\t\t}\n\n\t\tif (DEBUG) this.stats.timeEnd('appendRight');\n\t\treturn this;\n\t}\n\n\tclone() {\n\t\tconst cloned = new MagicString(this.original, { filename: this.filename });\n\n\t\tlet originalChunk = this.firstChunk;\n\t\tlet clonedChunk = (cloned.firstChunk = cloned.lastSearchedChunk = originalChunk.clone());\n\n\t\twhile (originalChunk) {\n\t\t\tcloned.byStart[clonedChunk.start] = clonedChunk;\n\t\t\tcloned.byEnd[clonedChunk.end] = clonedChunk;\n\n\t\t\tconst nextOriginalChunk = originalChunk.next;\n\t\t\tconst nextClonedChunk = nextOriginalChunk && nextOriginalChunk.clone();\n\n\t\t\tif (nextClonedChunk) {\n\t\t\t\tclonedChunk.next = nextClonedChunk;\n\t\t\t\tnextClonedChunk.previous = clonedChunk;\n\n\t\t\t\tclonedChunk = nextClonedChunk;\n\t\t\t}\n\n\t\t\toriginalChunk = nextOriginalChunk;\n\t\t}\n\n\t\tcloned.lastChunk = clonedChunk;\n\n\t\tif (this.indentExclusionRanges) {\n\t\t\tcloned.indentExclusionRanges = this.indentExclusionRanges.slice();\n\t\t}\n\n\t\tcloned.sourcemapLocations = new BitSet(this.sourcemapLocations);\n\n\t\tcloned.intro = this.intro;\n\t\tcloned.outro = this.outro;\n\n\t\treturn cloned;\n\t}\n\n\tgenerateDecodedMap(options) {\n\t\toptions = options || {};\n\n\t\tconst sourceIndex = 0;\n\t\tconst names = Object.keys(this.storedNames);\n\t\tconst mappings = new Mappings(options.hires);\n\n\t\tconst locate = getLocator(this.original);\n\n\t\tif (this.intro) {\n\t\t\tmappings.advance(this.intro);\n\t\t}\n\n\t\tthis.firstChunk.eachNext(chunk => {\n\t\t\tconst loc = locate(chunk.start);\n\n\t\t\tif (chunk.intro.length) mappings.advance(chunk.intro);\n\n\t\t\tif (chunk.edited) {\n\t\t\t\tmappings.addEdit(\n\t\t\t\t\tsourceIndex,\n\t\t\t\t\tchunk.content,\n\t\t\t\t\tloc,\n\t\t\t\t\tchunk.storeName ? names.indexOf(chunk.original) : -1\n\t\t\t\t);\n\t\t\t} else {\n\t\t\t\tmappings.addUneditedChunk(sourceIndex, chunk, this.original, loc, this.sourcemapLocations);\n\t\t\t}\n\n\t\t\tif (chunk.outro.length) mappings.advance(chunk.outro);\n\t\t});\n\n\t\treturn {\n\t\t\tfile: options.file ? options.file.split(/[/\\\\]/).pop() : null,\n\t\t\tsources: [options.source ? getRelativePath(options.file || '', options.source) : null],\n\t\t\tsourcesContent: options.includeContent ? [this.original] : [null],\n\t\t\tnames,\n\t\t\tmappings: mappings.raw\n\t\t};\n\t}\n\n\tgenerateMap(options) {\n\t\treturn new SourceMap(this.generateDecodedMap(options));\n\t}\n\n\tgetIndentString() {\n\t\treturn this.indentStr === null ? '\\t' : this.indentStr;\n\t}\n\n\tindent(indentStr, options) {\n\t\tconst pattern = /^[^\\r\\n]/gm;\n\n\t\tif (isObject(indentStr)) {\n\t\t\toptions = indentStr;\n\t\t\tindentStr = undefined;\n\t\t}\n\n\t\tindentStr = indentStr !== undefined ? indentStr : this.indentStr || '\\t';\n\n\t\tif (indentStr === '') return this; // noop\n\n\t\toptions = options || {};\n\n\t\t// Process exclusion ranges\n\t\tconst isExcluded = {};\n\n\t\tif (options.exclude) {\n\t\t\tconst exclusions =\n\t\t\t\ttypeof options.exclude[0] === 'number' ? [options.exclude] : options.exclude;\n\t\t\texclusions.forEach(exclusion => {\n\t\t\t\tfor (let i = exclusion[0]; i < exclusion[1]; i += 1) {\n\t\t\t\t\tisExcluded[i] = true;\n\t\t\t\t}\n\t\t\t});\n\t\t}\n\n\t\tlet shouldIndentNextCharacter = options.indentStart !== false;\n\t\tconst replacer = match => {\n\t\t\tif (shouldIndentNextCharacter) return `${indentStr}${match}`;\n\t\t\tshouldIndentNextCharacter = true;\n\t\t\treturn match;\n\t\t};\n\n\t\tthis.intro = this.intro.replace(pattern, replacer);\n\n\t\tlet charIndex = 0;\n\t\tlet chunk = this.firstChunk;\n\n\t\twhile (chunk) {\n\t\t\tconst end = chunk.end;\n\n\t\t\tif (chunk.edited) {\n\t\t\t\tif (!isExcluded[charIndex]) {\n\t\t\t\t\tchunk.content = chunk.content.replace(pattern, replacer);\n\n\t\t\t\t\tif (chunk.content.length) {\n\t\t\t\t\t\tshouldIndentNextCharacter = chunk.content[chunk.content.length - 1] === '\\n';\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tcharIndex = chunk.start;\n\n\t\t\t\twhile (charIndex < end) {\n\t\t\t\t\tif (!isExcluded[charIndex]) {\n\t\t\t\t\t\tconst char = this.original[charIndex];\n\n\t\t\t\t\t\tif (char === '\\n') {\n\t\t\t\t\t\t\tshouldIndentNextCharacter = true;\n\t\t\t\t\t\t} else if (char !== '\\r' && shouldIndentNextCharacter) {\n\t\t\t\t\t\t\tshouldIndentNextCharacter = false;\n\n\t\t\t\t\t\t\tif (charIndex === chunk.start) {\n\t\t\t\t\t\t\t\tchunk.prependRight(indentStr);\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tthis._splitChunk(chunk, charIndex);\n\t\t\t\t\t\t\t\tchunk = chunk.next;\n\t\t\t\t\t\t\t\tchunk.prependRight(indentStr);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\tcharIndex += 1;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tcharIndex = chunk.end;\n\t\t\tchunk = chunk.next;\n\t\t}\n\n\t\tthis.outro = this.outro.replace(pattern, replacer);\n\n\t\treturn this;\n\t}\n\n\tinsert() {\n\t\tthrow new Error('magicString.insert(...) is deprecated. Use prependRight(...) or appendLeft(...)');\n\t}\n\n\tinsertLeft(index, content) {\n\t\tif (!warned.insertLeft) {\n\t\t\tconsole.warn('magicString.insertLeft(...) is deprecated. Use magicString.appendLeft(...) instead'); // eslint-disable-line no-console\n\t\t\twarned.insertLeft = true;\n\t\t}\n\n\t\treturn this.appendLeft(index, content);\n\t}\n\n\tinsertRight(index, content) {\n\t\tif (!warned.insertRight) {\n\t\t\tconsole.warn('magicString.insertRight(...) is deprecated. Use magicString.prependRight(...) instead'); // eslint-disable-line no-console\n\t\t\twarned.insertRight = true;\n\t\t}\n\n\t\treturn this.prependRight(index, content);\n\t}\n\n\tmove(start, end, index) {\n\t\tif (index >= start && index <= end) throw new Error('Cannot move a selection inside itself');\n\n\t\tif (DEBUG) this.stats.time('move');\n\n\t\tthis._split(start);\n\t\tthis._split(end);\n\t\tthis._split(index);\n\n\t\tconst first = this.byStart[start];\n\t\tconst last = this.byEnd[end];\n\n\t\tconst oldLeft = first.previous;\n\t\tconst oldRight = last.next;\n\n\t\tconst newRight = this.byStart[index];\n\t\tif (!newRight && last === this.lastChunk) return this;\n\t\tconst newLeft = newRight ? newRight.previous : this.lastChunk;\n\n\t\tif (oldLeft) oldLeft.next = oldRight;\n\t\tif (oldRight) oldRight.previous = oldLeft;\n\n\t\tif (newLeft) newLeft.next = first;\n\t\tif (newRight) newRight.previous = last;\n\n\t\tif (!first.previous) this.firstChunk = last.next;\n\t\tif (!last.next) {\n\t\t\tthis.lastChunk = first.previous;\n\t\t\tthis.lastChunk.next = null;\n\t\t}\n\n\t\tfirst.previous = newLeft;\n\t\tlast.next = newRight || null;\n\n\t\tif (!newLeft) this.firstChunk = first;\n\t\tif (!newRight) this.lastChunk = last;\n\n\t\tif (DEBUG) this.stats.timeEnd('move');\n\t\treturn this;\n\t}\n\n\toverwrite(start, end, content, options) {\n\t\tif (typeof content !== 'string') throw new TypeError('replacement content must be a string');\n\n\t\twhile (start < 0) start += this.original.length;\n\t\twhile (end < 0) end += this.original.length;\n\n\t\tif (end > this.original.length) throw new Error('end is out of bounds');\n\t\tif (start === end)\n\t\t\tthrow new Error('Cannot overwrite a zero-length range – use appendLeft or prependRight instead');\n\n\t\tif (DEBUG) this.stats.time('overwrite');\n\n\t\tthis._split(start);\n\t\tthis._split(end);\n\n\t\tif (options === true) {\n\t\t\tif (!warned.storeName) {\n\t\t\t\tconsole.warn('The final argument to magicString.overwrite(...) should be an options object. See https://github.com/rich-harris/magic-string'); // eslint-disable-line no-console\n\t\t\t\twarned.storeName = true;\n\t\t\t}\n\n\t\t\toptions = { storeName: true };\n\t\t}\n\t\tconst storeName = options !== undefined ? options.storeName : false;\n\t\tconst contentOnly = options !== undefined ? options.contentOnly : false;\n\n\t\tif (storeName) {\n\t\t\tconst original = this.original.slice(start, end);\n\t\t\tthis.storedNames[original] = true;\n\t\t}\n\n\t\tconst first = this.byStart[start];\n\t\tconst last = this.byEnd[end];\n\n\t\tif (first) {\n\t\t\tif (end > first.end && first.next !== this.byStart[first.end]) {\n\t\t\t\tthrow new Error('Cannot overwrite across a split point');\n\t\t\t}\n\n\t\t\tfirst.edit(content, storeName, contentOnly);\n\n\t\t\tif (first !== last) {\n\t\t\t\tlet chunk = first.next;\n\t\t\t\twhile (chunk !== last) {\n\t\t\t\t\tchunk.edit('', false);\n\t\t\t\t\tchunk = chunk.next;\n\t\t\t\t}\n\n\t\t\t\tchunk.edit('', false);\n\t\t\t}\n\t\t} else {\n\t\t\t// must be inserting at the end\n\t\t\tconst newChunk = new Chunk(start, end, '').edit(content, storeName);\n\n\t\t\t// TODO last chunk in the array may not be the last chunk, if it's moved...\n\t\t\tlast.next = newChunk;\n\t\t\tnewChunk.previous = last;\n\t\t}\n\n\t\tif (DEBUG) this.stats.timeEnd('overwrite');\n\t\treturn this;\n\t}\n\n\tprepend(content) {\n\t\tif (typeof content !== 'string') throw new TypeError('outro content must be a string');\n\n\t\tthis.intro = content + this.intro;\n\t\treturn this;\n\t}\n\n\tprependLeft(index, content) {\n\t\tif (typeof content !== 'string') throw new TypeError('inserted content must be a string');\n\n\t\tif (DEBUG) this.stats.time('insertRight');\n\n\t\tthis._split(index);\n\n\t\tconst chunk = this.byEnd[index];\n\n\t\tif (chunk) {\n\t\t\tchunk.prependLeft(content);\n\t\t} else {\n\t\t\tthis.intro = content + this.intro;\n\t\t}\n\n\t\tif (DEBUG) this.stats.timeEnd('insertRight');\n\t\treturn this;\n\t}\n\n\tprependRight(index, content) {\n\t\tif (typeof content !== 'string') throw new TypeError('inserted content must be a string');\n\n\t\tif (DEBUG) this.stats.time('insertRight');\n\n\t\tthis._split(index);\n\n\t\tconst chunk = this.byStart[index];\n\n\t\tif (chunk) {\n\t\t\tchunk.prependRight(content);\n\t\t} else {\n\t\t\tthis.outro = content + this.outro;\n\t\t}\n\n\t\tif (DEBUG) this.stats.timeEnd('insertRight');\n\t\treturn this;\n\t}\n\n\tremove(start, end) {\n\t\twhile (start < 0) start += this.original.length;\n\t\twhile (end < 0) end += this.original.length;\n\n\t\tif (start === end) return this;\n\n\t\tif (start < 0 || end > this.original.length) throw new Error('Character is out of bounds');\n\t\tif (start > end) throw new Error('end must be greater than start');\n\n\t\tif (DEBUG) this.stats.time('remove');\n\n\t\tthis._split(start);\n\t\tthis._split(end);\n\n\t\tlet chunk = this.byStart[start];\n\n\t\twhile (chunk) {\n\t\t\tchunk.intro = '';\n\t\t\tchunk.outro = '';\n\t\t\tchunk.edit('');\n\n\t\t\tchunk = end > chunk.end ? this.byStart[chunk.end] : null;\n\t\t}\n\n\t\tif (DEBUG) this.stats.timeEnd('remove');\n\t\treturn this;\n\t}\n\n\tlastChar() {\n\t\tif (this.outro.length)\n\t\t\treturn this.outro[this.outro.length - 1];\n\t\tlet chunk = this.lastChunk;\n\t\tdo {\n\t\t\tif (chunk.outro.length)\n\t\t\t\treturn chunk.outro[chunk.outro.length - 1];\n\t\t\tif (chunk.content.length)\n\t\t\t\treturn chunk.content[chunk.content.length - 1];\n\t\t\tif (chunk.intro.length)\n\t\t\t\treturn chunk.intro[chunk.intro.length - 1];\n\t\t} while (chunk = chunk.previous);\n\t\tif (this.intro.length)\n\t\t\treturn this.intro[this.intro.length - 1];\n\t\treturn '';\n\t}\n\n\tlastLine() {\n\t\tlet lineIndex = this.outro.lastIndexOf(n);\n\t\tif (lineIndex !== -1)\n\t\t\treturn this.outro.substr(lineIndex + 1);\n\t\tlet lineStr = this.outro;\n\t\tlet chunk = this.lastChunk;\n\t\tdo {\n\t\t\tif (chunk.outro.length > 0) {\n\t\t\t\tlineIndex = chunk.outro.lastIndexOf(n);\n\t\t\t\tif (lineIndex !== -1)\n\t\t\t\t\treturn chunk.outro.substr(lineIndex + 1) + lineStr;\n\t\t\t\tlineStr = chunk.outro + lineStr;\n\t\t\t}\n\n\t\t\tif (chunk.content.length > 0) {\n\t\t\t\tlineIndex = chunk.content.lastIndexOf(n);\n\t\t\t\tif (lineIndex !== -1)\n\t\t\t\t\treturn chunk.content.substr(lineIndex + 1) + lineStr;\n\t\t\t\tlineStr = chunk.content + lineStr;\n\t\t\t}\n\n\t\t\tif (chunk.intro.length > 0) {\n\t\t\t\tlineIndex = chunk.intro.lastIndexOf(n);\n\t\t\t\tif (lineIndex !== -1)\n\t\t\t\t\treturn chunk.intro.substr(lineIndex + 1) + lineStr;\n\t\t\t\tlineStr = chunk.intro + lineStr;\n\t\t\t}\n\t\t} while (chunk = chunk.previous);\n\t\tlineIndex = this.intro.lastIndexOf(n);\n\t\tif (lineIndex !== -1)\n\t\t\treturn this.intro.substr(lineIndex + 1) + lineStr;\n\t\treturn this.intro + lineStr;\n\t}\n\n\tslice(start = 0, end = this.original.length) {\n\t\twhile (start < 0) start += this.original.length;\n\t\twhile (end < 0) end += this.original.length;\n\n\t\tlet result = '';\n\n\t\t// find start chunk\n\t\tlet chunk = this.firstChunk;\n\t\twhile (chunk && (chunk.start > start || chunk.end <= start)) {\n\t\t\t// found end chunk before start\n\t\t\tif (chunk.start < end && chunk.end >= end) {\n\t\t\t\treturn result;\n\t\t\t}\n\n\t\t\tchunk = chunk.next;\n\t\t}\n\n\t\tif (chunk && chunk.edited && chunk.start !== start)\n\t\t\tthrow new Error(`Cannot use replaced character ${start} as slice start anchor.`);\n\n\t\tconst startChunk = chunk;\n\t\twhile (chunk) {\n\t\t\tif (chunk.intro && (startChunk !== chunk || chunk.start === start)) {\n\t\t\t\tresult += chunk.intro;\n\t\t\t}\n\n\t\t\tconst containsEnd = chunk.start < end && chunk.end >= end;\n\t\t\tif (containsEnd && chunk.edited && chunk.end !== end)\n\t\t\t\tthrow new Error(`Cannot use replaced character ${end} as slice end anchor.`);\n\n\t\t\tconst sliceStart = startChunk === chunk ? start - chunk.start : 0;\n\t\t\tconst sliceEnd = containsEnd ? chunk.content.length + end - chunk.end : chunk.content.length;\n\n\t\t\tresult += chunk.content.slice(sliceStart, sliceEnd);\n\n\t\t\tif (chunk.outro && (!containsEnd || chunk.end === end)) {\n\t\t\t\tresult += chunk.outro;\n\t\t\t}\n\n\t\t\tif (containsEnd) {\n\t\t\t\tbreak;\n\t\t\t}\n\n\t\t\tchunk = chunk.next;\n\t\t}\n\n\t\treturn result;\n\t}\n\n\t// TODO deprecate this? not really very useful\n\tsnip(start, end) {\n\t\tconst clone = this.clone();\n\t\tclone.remove(0, start);\n\t\tclone.remove(end, clone.original.length);\n\n\t\treturn clone;\n\t}\n\n\t_split(index) {\n\t\tif (this.byStart[index] || this.byEnd[index]) return;\n\n\t\tif (DEBUG) this.stats.time('_split');\n\n\t\tlet chunk = this.lastSearchedChunk;\n\t\tconst searchForward = index > chunk.end;\n\n\t\twhile (chunk) {\n\t\t\tif (chunk.contains(index)) return this._splitChunk(chunk, index);\n\n\t\t\tchunk = searchForward ? this.byStart[chunk.end] : this.byEnd[chunk.start];\n\t\t}\n\t}\n\n\t_splitChunk(chunk, index) {\n\t\tif (chunk.edited && chunk.content.length) {\n\t\t\t// zero-length edited chunks are a special case (overlapping replacements)\n\t\t\tconst loc = getLocator(this.original)(index);\n\t\t\tthrow new Error(\n\t\t\t\t`Cannot split a chunk that has already been edited (${loc.line}:${loc.column} – \"${\n\t\t\t\t\tchunk.original\n\t\t\t\t}\")`\n\t\t\t);\n\t\t}\n\n\t\tconst newChunk = chunk.split(index);\n\n\t\tthis.byEnd[index] = chunk;\n\t\tthis.byStart[index] = newChunk;\n\t\tthis.byEnd[newChunk.end] = newChunk;\n\n\t\tif (chunk === this.lastChunk) this.lastChunk = newChunk;\n\n\t\tthis.lastSearchedChunk = chunk;\n\t\tif (DEBUG) this.stats.timeEnd('_split');\n\t\treturn true;\n\t}\n\n\ttoString() {\n\t\tlet str = this.intro;\n\n\t\tlet chunk = this.firstChunk;\n\t\twhile (chunk) {\n\t\t\tstr += chunk.toString();\n\t\t\tchunk = chunk.next;\n\t\t}\n\n\t\treturn str + this.outro;\n\t}\n\n\tisEmpty() {\n\t\tlet chunk = this.firstChunk;\n\t\tdo {\n\t\t\tif (chunk.intro.length && chunk.intro.trim() ||\n\t\t\t\t\tchunk.content.length && chunk.content.trim() ||\n\t\t\t\t\tchunk.outro.length && chunk.outro.trim())\n\t\t\t\treturn false;\n\t\t} while (chunk = chunk.next);\n\t\treturn true;\n\t}\n\n\tlength() {\n\t\tlet chunk = this.firstChunk;\n\t\tlet length = 0;\n\t\tdo {\n\t\t\tlength += chunk.intro.length + chunk.content.length + chunk.outro.length;\n\t\t} while (chunk = chunk.next);\n\t\treturn length;\n\t}\n\n\ttrimLines() {\n\t\treturn this.trim('[\\\\r\\\\n]');\n\t}\n\n\ttrim(charType) {\n\t\treturn this.trimStart(charType).trimEnd(charType);\n\t}\n\n\ttrimEndAborted(charType) {\n\t\tconst rx = new RegExp((charType || '\\\\s') + '+$');\n\n\t\tthis.outro = this.outro.replace(rx, '');\n\t\tif (this.outro.length) return true;\n\n\t\tlet chunk = this.lastChunk;\n\n\t\tdo {\n\t\t\tconst end = chunk.end;\n\t\t\tconst aborted = chunk.trimEnd(rx);\n\n\t\t\t// if chunk was trimmed, we have a new lastChunk\n\t\t\tif (chunk.end !== end) {\n\t\t\t\tif (this.lastChunk === chunk) {\n\t\t\t\t\tthis.lastChunk = chunk.next;\n\t\t\t\t}\n\n\t\t\t\tthis.byEnd[chunk.end] = chunk;\n\t\t\t\tthis.byStart[chunk.next.start] = chunk.next;\n\t\t\t\tthis.byEnd[chunk.next.end] = chunk.next;\n\t\t\t}\n\n\t\t\tif (aborted) return true;\n\t\t\tchunk = chunk.previous;\n\t\t} while (chunk);\n\n\t\treturn false;\n\t}\n\n\ttrimEnd(charType) {\n\t\tthis.trimEndAborted(charType);\n\t\treturn this;\n\t}\n\ttrimStartAborted(charType) {\n\t\tconst rx = new RegExp('^' + (charType || '\\\\s') + '+');\n\n\t\tthis.intro = this.intro.replace(rx, '');\n\t\tif (this.intro.length) return true;\n\n\t\tlet chunk = this.firstChunk;\n\n\t\tdo {\n\t\t\tconst end = chunk.end;\n\t\t\tconst aborted = chunk.trimStart(rx);\n\n\t\t\tif (chunk.end !== end) {\n\t\t\t\t// special case...\n\t\t\t\tif (chunk === this.lastChunk) this.lastChunk = chunk.next;\n\n\t\t\t\tthis.byEnd[chunk.end] = chunk;\n\t\t\t\tthis.byStart[chunk.next.start] = chunk.next;\n\t\t\t\tthis.byEnd[chunk.next.end] = chunk.next;\n\t\t\t}\n\n\t\t\tif (aborted) return true;\n\t\t\tchunk = chunk.next;\n\t\t} while (chunk);\n\n\t\treturn false;\n\t}\n\n\ttrimStart(charType) {\n\t\tthis.trimStartAborted(charType);\n\t\treturn this;\n\t}\n}\n","import MagicString from './MagicString.js';\nimport SourceMap from './SourceMap.js';\nimport getRelativePath from './utils/getRelativePath.js';\nimport isObject from './utils/isObject.js';\nimport getLocator from './utils/getLocator.js';\nimport Mappings from './utils/Mappings.js';\n\nconst hasOwnProp = Object.prototype.hasOwnProperty;\n\nexport default class Bundle {\n\tconstructor(options = {}) {\n\t\tthis.intro = options.intro || '';\n\t\tthis.separator = options.separator !== undefined ? options.separator : '\\n';\n\t\tthis.sources = [];\n\t\tthis.uniqueSources = [];\n\t\tthis.uniqueSourceIndexByFilename = {};\n\t}\n\n\taddSource(source) {\n\t\tif (source instanceof MagicString) {\n\t\t\treturn this.addSource({\n\t\t\t\tcontent: source,\n\t\t\t\tfilename: source.filename,\n\t\t\t\tseparator: this.separator\n\t\t\t});\n\t\t}\n\n\t\tif (!isObject(source) || !source.content) {\n\t\t\tthrow new Error('bundle.addSource() takes an object with a `content` property, which should be an instance of MagicString, and an optional `filename`');\n\t\t}\n\n\t\t['filename', 'indentExclusionRanges', 'separator'].forEach(option => {\n\t\t\tif (!hasOwnProp.call(source, option)) source[option] = source.content[option];\n\t\t});\n\n\t\tif (source.separator === undefined) {\n\t\t\t// TODO there's a bunch of this sort of thing, needs cleaning up\n\t\t\tsource.separator = this.separator;\n\t\t}\n\n\t\tif (source.filename) {\n\t\t\tif (!hasOwnProp.call(this.uniqueSourceIndexByFilename, source.filename)) {\n\t\t\t\tthis.uniqueSourceIndexByFilename[source.filename] = this.uniqueSources.length;\n\t\t\t\tthis.uniqueSources.push({ filename: source.filename, content: source.content.original });\n\t\t\t} else {\n\t\t\t\tconst uniqueSource = this.uniqueSources[this.uniqueSourceIndexByFilename[source.filename]];\n\t\t\t\tif (source.content.original !== uniqueSource.content) {\n\t\t\t\t\tthrow new Error(`Illegal source: same filename (${source.filename}), different contents`);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tthis.sources.push(source);\n\t\treturn this;\n\t}\n\n\tappend(str, options) {\n\t\tthis.addSource({\n\t\t\tcontent: new MagicString(str),\n\t\t\tseparator: (options && options.separator) || ''\n\t\t});\n\n\t\treturn this;\n\t}\n\n\tclone() {\n\t\tconst bundle = new Bundle({\n\t\t\tintro: this.intro,\n\t\t\tseparator: this.separator\n\t\t});\n\n\t\tthis.sources.forEach(source => {\n\t\t\tbundle.addSource({\n\t\t\t\tfilename: source.filename,\n\t\t\t\tcontent: source.content.clone(),\n\t\t\t\tseparator: source.separator\n\t\t\t});\n\t\t});\n\n\t\treturn bundle;\n\t}\n\n\tgenerateDecodedMap(options = {}) {\n\t\tconst names = [];\n\t\tthis.sources.forEach(source => {\n\t\t\tObject.keys(source.content.storedNames).forEach(name => {\n\t\t\t\tif (!~names.indexOf(name)) names.push(name);\n\t\t\t});\n\t\t});\n\n\t\tconst mappings = new Mappings(options.hires);\n\n\t\tif (this.intro) {\n\t\t\tmappings.advance(this.intro);\n\t\t}\n\n\t\tthis.sources.forEach((source, i) => {\n\t\t\tif (i > 0) {\n\t\t\t\tmappings.advance(this.separator);\n\t\t\t}\n\n\t\t\tconst sourceIndex = source.filename ? this.uniqueSourceIndexByFilename[source.filename] : -1;\n\t\t\tconst magicString = source.content;\n\t\t\tconst locate = getLocator(magicString.original);\n\n\t\t\tif (magicString.intro) {\n\t\t\t\tmappings.advance(magicString.intro);\n\t\t\t}\n\n\t\t\tmagicString.firstChunk.eachNext(chunk => {\n\t\t\t\tconst loc = locate(chunk.start);\n\n\t\t\t\tif (chunk.intro.length) mappings.advance(chunk.intro);\n\n\t\t\t\tif (source.filename) {\n\t\t\t\t\tif (chunk.edited) {\n\t\t\t\t\t\tmappings.addEdit(\n\t\t\t\t\t\t\tsourceIndex,\n\t\t\t\t\t\t\tchunk.content,\n\t\t\t\t\t\t\tloc,\n\t\t\t\t\t\t\tchunk.storeName ? names.indexOf(chunk.original) : -1\n\t\t\t\t\t\t);\n\t\t\t\t\t} else {\n\t\t\t\t\t\tmappings.addUneditedChunk(\n\t\t\t\t\t\t\tsourceIndex,\n\t\t\t\t\t\t\tchunk,\n\t\t\t\t\t\t\tmagicString.original,\n\t\t\t\t\t\t\tloc,\n\t\t\t\t\t\t\tmagicString.sourcemapLocations\n\t\t\t\t\t\t);\n\t\t\t\t\t}\n\t\t\t\t} else {\n\t\t\t\t\tmappings.advance(chunk.content);\n\t\t\t\t}\n\n\t\t\t\tif (chunk.outro.length) mappings.advance(chunk.outro);\n\t\t\t});\n\n\t\t\tif (magicString.outro) {\n\t\t\t\tmappings.advance(magicString.outro);\n\t\t\t}\n\t\t});\n\n\t\treturn {\n\t\t\tfile: options.file ? options.file.split(/[/\\\\]/).pop() : null,\n\t\t\tsources: this.uniqueSources.map(source => {\n\t\t\t\treturn options.file ? getRelativePath(options.file, source.filename) : source.filename;\n\t\t\t}),\n\t\t\tsourcesContent: this.uniqueSources.map(source => {\n\t\t\t\treturn options.includeContent ? source.content : null;\n\t\t\t}),\n\t\t\tnames,\n\t\t\tmappings: mappings.raw\n\t\t};\n\t}\n\n\tgenerateMap(options) {\n\t\treturn new SourceMap(this.generateDecodedMap(options));\n\t}\n\n\tgetIndentString() {\n\t\tconst indentStringCounts = {};\n\n\t\tthis.sources.forEach(source => {\n\t\t\tconst indentStr = source.content.indentStr;\n\n\t\t\tif (indentStr === null) return;\n\n\t\t\tif (!indentStringCounts[indentStr]) indentStringCounts[indentStr] = 0;\n\t\t\tindentStringCounts[indentStr] += 1;\n\t\t});\n\n\t\treturn (\n\t\t\tObject.keys(indentStringCounts).sort((a, b) => {\n\t\t\t\treturn indentStringCounts[a] - indentStringCounts[b];\n\t\t\t})[0] || '\\t'\n\t\t);\n\t}\n\n\tindent(indentStr) {\n\t\tif (!arguments.length) {\n\t\t\tindentStr = this.getIndentString();\n\t\t}\n\n\t\tif (indentStr === '') return this; // noop\n\n\t\tlet trailingNewline = !this.intro || this.intro.slice(-1) === '\\n';\n\n\t\tthis.sources.forEach((source, i) => {\n\t\t\tconst separator = source.separator !== undefined ? source.separator : this.separator;\n\t\t\tconst indentStart = trailingNewline || (i > 0 && /\\r?\\n$/.test(separator));\n\n\t\t\tsource.content.indent(indentStr, {\n\t\t\t\texclude: source.indentExclusionRanges,\n\t\t\t\tindentStart //: trailingNewline || /\\r?\\n$/.test( separator ) //true///\\r?\\n/.test( separator )\n\t\t\t});\n\n\t\t\ttrailingNewline = source.content.lastChar() === '\\n';\n\t\t});\n\n\t\tif (this.intro) {\n\t\t\tthis.intro =\n\t\t\t\tindentStr +\n\t\t\t\tthis.intro.replace(/^[^\\n]/gm, (match, index) => {\n\t\t\t\t\treturn index > 0 ? indentStr + match : match;\n\t\t\t\t});\n\t\t}\n\n\t\treturn this;\n\t}\n\n\tprepend(str) {\n\t\tthis.intro = str + this.intro;\n\t\treturn this;\n\t}\n\n\ttoString() {\n\t\tconst body = this.sources\n\t\t\t.map((source, i) => {\n\t\t\t\tconst separator = source.separator !== undefined ? source.separator : this.separator;\n\t\t\t\tconst str = (i > 0 ? separator : '') + source.content.toString();\n\n\t\t\t\treturn str;\n\t\t\t})\n\t\t\t.join('');\n\n\t\treturn this.intro + body;\n\t}\n\n\tisEmpty () {\n\t\tif (this.intro.length && this.intro.trim())\n\t\t\treturn false;\n\t\tif (this.sources.some(source => !source.content.isEmpty()))\n\t\t\treturn false;\n\t\treturn true;\n\t}\n\n\tlength() {\n\t\treturn this.sources.reduce((length, source) => length + source.content.length(), this.intro.length);\n\t}\n\n\ttrimLines() {\n\t\treturn this.trim('[\\\\r\\\\n]');\n\t}\n\n\ttrim(charType) {\n\t\treturn this.trimStart(charType).trimEnd(charType);\n\t}\n\n\ttrimStart(charType) {\n\t\tconst rx = new RegExp('^' + (charType || '\\\\s') + '+');\n\t\tthis.intro = this.intro.replace(rx, '');\n\n\t\tif (!this.intro) {\n\t\t\tlet source;\n\t\t\tlet i = 0;\n\n\t\t\tdo {\n\t\t\t\tsource = this.sources[i++];\n\t\t\t\tif (!source) {\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t} while (!source.content.trimStartAborted(charType));\n\t\t}\n\n\t\treturn this;\n\t}\n\n\ttrimEnd(charType) {\n\t\tconst rx = new RegExp((charType || '\\\\s') + '+$');\n\n\t\tlet source;\n\t\tlet i = this.sources.length - 1;\n\n\t\tdo {\n\t\t\tsource = this.sources[i--];\n\t\t\tif (!source) {\n\t\t\t\tthis.intro = this.intro.replace(rx, '');\n\t\t\t\tbreak;\n\t\t\t}\n\t\t} while (!source.content.trimEndAborted(charType));\n\n\t\treturn this;\n\t}\n}\n","import MagicString from './MagicString.js';\nimport Bundle from './Bundle.js';\nimport SourceMap from './SourceMap.js';\n\nMagicString.Bundle = Bundle;\nMagicString.SourceMap = SourceMap;\nMagicString.default = MagicString; // work around TypeScript bug https://github.com/Rich-Harris/magic-string/pull/121\n\nexport default MagicString;\n"],"names":["const","let","this"],"mappings":"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"}
@@ -10,12 +10,17 @@ export interface SourceMapOptions {
10
10
  includeContent: boolean;
11
11
  }
12
12
 
13
+ export type SourceMapSegment =
14
+ | [number]
15
+ | [number, number, number, number]
16
+ | [number, number, number, number, number];
17
+
13
18
  export interface DecodedSourceMap {
14
19
  file: string;
15
20
  sources: string[];
16
21
  sourcesContent: string[];
17
22
  names: string[];
18
- mappings: number[][][];
23
+ mappings: SourceMapSegment[][];
19
24
  }
20
25
 
21
26
  export class SourceMap {
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "_from": "magic-string@^0.25.2",
3
- "_id": "magic-string@0.25.3",
3
+ "_id": "magic-string@0.25.5",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-6QK0OpF/phMz0Q2AxILkX2mFhi7m+WMwTRg0LQKq/WBB0cDP4rYH3Wp4/d3OTXlrPLVJT/RFqj8tFeAR4nk8AA==",
5
+ "_integrity": "sha512-vIO/BOm9odBHBAGwv0gZPLJeO9IpwliiIc0uPeAW93rrFMJ/R3M665IAEfOU/IW3kD4S9AtEn76lfTn1Yif+9A==",
6
6
  "_location": "/magic-string",
7
7
  "_phantomChildren": {},
8
8
  "_requested": {
@@ -18,8 +18,8 @@
18
18
  "_requiredBy": [
19
19
  "/rollup-plugin-commonjs"
20
20
  ],
21
- "_resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.25.3.tgz",
22
- "_shasum": "34b8d2a2c7fec9d9bdf9929a3fd81d271ef35be9",
21
+ "_resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.25.5.tgz",
22
+ "_shasum": "694fa8c6b9a51d83cc4a72c5b6883a7cfa890e40",
23
23
  "_spec": "magic-string@^0.25.2",
24
24
  "_where": "/Users/malomalo/Code/condenser/lib/condenser/processors/node_modules/rollup-plugin-commonjs",
25
25
  "author": {
@@ -77,5 +77,5 @@
77
77
  "watch": "rollup -cw"
78
78
  },
79
79
  "typings": "index.d.ts",
80
- "version": "0.25.3"
80
+ "version": "0.25.5"
81
81
  }
@@ -2,75 +2,42 @@
2
2
  <project version="4">
3
3
  <component name="ChangeListManager">
4
4
  <list default="true" id="2adb9df7-dc6f-46a2-94c4-b7e31697fc3d" name="Default Changelist" comment="" />
5
- <ignored path="$PROJECT_DIR$/.tmp/" />
6
- <ignored path="$PROJECT_DIR$/temp/" />
7
- <ignored path="$PROJECT_DIR$/tmp/" />
8
- <option name="EXCLUDED_CONVERTED_TO_IGNORED" value="true" />
9
5
  <option name="SHOW_DIALOG" value="false" />
10
6
  <option name="HIGHLIGHT_CONFLICTS" value="true" />
11
7
  <option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
12
8
  <option name="LAST_RESOLUTION" value="IGNORE" />
13
9
  </component>
14
- <component name="FileEditorManager">
15
- <leaf SIDE_TABS_SIZE_LIMIT_KEY="300">
16
- <file pinned="false" current-in-tab="true">
17
- <entry file="file://$PROJECT_DIR$/package.json">
18
- <provider selected="true" editor-type-id="text-editor">
19
- <state relative-caret-position="368">
20
- <caret line="23" lean-forward="true" selection-start-line="23" selection-end-line="23" />
21
- </state>
22
- </provider>
23
- </entry>
24
- </file>
25
- </leaf>
26
- </component>
27
10
  <component name="Git.Settings">
28
11
  <option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
29
12
  </component>
30
- <component name="ProjectFrameBounds" extendedState="6">
31
- <option name="y" value="23" />
32
- <option name="width" value="1280" />
33
- <option name="height" value="777" />
34
- </component>
13
+ <component name="ProjectId" id="1QuzFWFRAbemMQ0fqkm8OO5TzKe" />
35
14
  <component name="ProjectLevelVcsManager" settingsEditedManually="true" />
36
- <component name="ProjectView">
37
- <navigator proportions="" version="1">
38
- <foldersAlwaysOnTop value="true" />
39
- </navigator>
40
- <panes>
41
- <pane id="Scope" />
42
- <pane id="ProjectPane">
43
- <subPane>
44
- <expand>
45
- <path>
46
- <item name="node-releases" type="b2602c69:ProjectViewProjectNode" />
47
- <item name="node-releases" type="462c0819:PsiDirectoryNode" />
48
- </path>
49
- <path>
50
- <item name="node-releases" type="b2602c69:ProjectViewProjectNode" />
51
- <item name="node-releases" type="462c0819:PsiDirectoryNode" />
52
- <item name="data" type="462c0819:PsiDirectoryNode" />
53
- </path>
54
- </expand>
55
- <select />
56
- </subPane>
57
- </pane>
58
- </panes>
15
+ <component name="ProjectViewState">
16
+ <option name="hideEmptyMiddlePackages" value="true" />
17
+ <option name="showExcludedFiles" value="true" />
18
+ <option name="showLibraryContents" value="true" />
59
19
  </component>
60
20
  <component name="PropertiesComponent">
61
21
  <property name="WebServerToolWindowFactoryState" value="false" />
22
+ <property name="node.js.detected.package.eslint" value="true" />
23
+ <property name="node.js.detected.package.tslint" value="true" />
24
+ <property name="node.js.path.for.package.eslint" value="project" />
25
+ <property name="node.js.path.for.package.tslint" value="project" />
26
+ <property name="node.js.selected.package.eslint" value="(autodetect)" />
27
+ <property name="node.js.selected.package.tslint" value="(autodetect)" />
62
28
  <property name="nodejs_interpreter_path.stuck_in_default_project" value="undefined stuck path" />
63
29
  <property name="nodejs_npm_path_reset_for_default_project" value="true" />
30
+ <property name="nodejs_package_manager_path" value="npm" />
64
31
  </component>
65
- <component name="RunDashboard">
66
- <option name="ruleStates">
32
+ <component name="ServiceViewManager">
33
+ <option name="viewStates">
67
34
  <list>
68
- <RuleState>
69
- <option name="name" value="ConfigurationTypeDashboardGroupingRule" />
70
- </RuleState>
71
- <RuleState>
72
- <option name="name" value="StatusDashboardGroupingRule" />
73
- </RuleState>
35
+ <serviceView>
36
+ <treeState>
37
+ <expand />
38
+ <select />
39
+ </treeState>
40
+ </serviceView>
74
41
  </list>
75
42
  </option>
76
43
  </component>
@@ -90,6 +57,14 @@
90
57
  <workItem from="1541329259404" duration="199000" />
91
58
  <workItem from="1542562588391" duration="109000" />
92
59
  <workItem from="1545165877505" duration="634000" />
60
+ <workItem from="1568635167152" duration="1369000" />
61
+ <workItem from="1568808864771" duration="2005000" />
62
+ <workItem from="1569315408847" duration="577000" />
63
+ <workItem from="1569322725908" duration="349000" />
64
+ <workItem from="1569781022246" duration="569000" />
65
+ <workItem from="1574765059873" duration="482000" />
66
+ <workItem from="1574772117340" duration="559000" />
67
+ <workItem from="1574798879704" duration="6000" />
93
68
  </task>
94
69
  <task id="LOCAL-00001" summary="upd">
95
70
  <created>1541196833083</created>
@@ -105,51 +80,42 @@
105
80
  <option name="project" value="LOCAL" />
106
81
  <updated>1545165894333</updated>
107
82
  </task>
108
- <option name="localTasksCounter" value="3" />
83
+ <task id="LOCAL-00003" summary="merge master">
84
+ <created>1568635276140</created>
85
+ <option name="number" value="00003" />
86
+ <option name="presentableId" value="LOCAL-00003" />
87
+ <option name="project" value="LOCAL" />
88
+ <updated>1568635276140</updated>
89
+ </task>
90
+ <task id="LOCAL-00004" summary="merge master">
91
+ <created>1568635494361</created>
92
+ <option name="number" value="00004" />
93
+ <option name="presentableId" value="LOCAL-00004" />
94
+ <option name="project" value="LOCAL" />
95
+ <updated>1568635494361</updated>
96
+ </task>
97
+ <option name="localTasksCounter" value="5" />
109
98
  <servers />
110
99
  </component>
111
- <component name="TimeTrackingManager">
112
- <option name="totallyTimeSpent" value="2219000" />
113
- </component>
114
- <component name="ToolWindowManager">
115
- <frame x="0" y="23" width="1280" height="777" extended-state="6" />
116
- <editor active="true" />
117
- <layout>
118
- <window_info active="true" content_ui="combo" id="Project" order="0" visible="true" weight="0.2494043" />
119
- <window_info id="Structure" order="1" side_tool="true" weight="0.25" />
120
- <window_info id="Favorites" order="2" side_tool="true" />
121
- <window_info anchor="bottom" id="Message" order="0" />
122
- <window_info anchor="bottom" id="Find" order="1" />
123
- <window_info anchor="bottom" id="Run" order="2" />
124
- <window_info anchor="bottom" id="Debug" order="3" weight="0.4" />
125
- <window_info anchor="bottom" id="Cvs" order="4" weight="0.25" />
126
- <window_info anchor="bottom" id="Inspection" order="5" weight="0.4" />
127
- <window_info anchor="bottom" id="TODO" order="6" />
128
- <window_info anchor="bottom" id="Docker" order="7" show_stripe_button="false" />
129
- <window_info anchor="bottom" id="Quokka" order="8" />
130
- <window_info anchor="bottom" id="Version Control" order="9" />
131
- <window_info anchor="bottom" id="Bucklescript" order="10" />
132
- <window_info anchor="bottom" id="Terminal" order="11" />
133
- <window_info anchor="bottom" id="Event Log" order="12" side_tool="true" />
134
- <window_info anchor="right" id="Commander" order="0" weight="0.4" />
135
- <window_info anchor="right" id="Ant Build" order="1" weight="0.25" />
136
- <window_info anchor="right" content_ui="combo" id="Hierarchy" order="2" weight="0.25" />
137
- </layout>
138
- </component>
139
100
  <component name="TypeScriptGeneratedFilesManager">
140
101
  <option name="version" value="1" />
141
102
  </component>
103
+ <component name="Vcs.Log.Tabs.Properties">
104
+ <option name="TAB_STATES">
105
+ <map>
106
+ <entry key="MAIN">
107
+ <value>
108
+ <State>
109
+ <option name="COLUMN_ORDER" />
110
+ </State>
111
+ </value>
112
+ </entry>
113
+ </map>
114
+ </option>
115
+ </component>
142
116
  <component name="VcsManagerConfiguration">
143
117
  <MESSAGE value="upd" />
144
- <option name="LAST_COMMIT_MESSAGE" value="upd" />
145
- </component>
146
- <component name="editorHistoryManager">
147
- <entry file="file://$PROJECT_DIR$/package.json">
148
- <provider selected="true" editor-type-id="text-editor">
149
- <state relative-caret-position="368">
150
- <caret line="23" lean-forward="true" selection-start-line="23" selection-end-line="23" />
151
- </state>
152
- </provider>
153
- </entry>
118
+ <MESSAGE value="merge master" />
119
+ <option name="LAST_COMMIT_MESSAGE" value="merge master" />
154
120
  </component>
155
121
  </project>
@@ -3,67 +3,78 @@
3
3
  "name": "nodejs",
4
4
  "version": "0.2.0",
5
5
  "date": "2011-08-26",
6
- "lts": false
6
+ "lts": false,
7
+ "security": false
7
8
  },
8
9
  {
9
10
  "name": "nodejs",
10
11
  "version": "0.3.0",
11
12
  "date": "2011-08-26",
12
- "lts": false
13
+ "lts": false,
14
+ "security": false
13
15
  },
14
16
  {
15
17
  "name": "nodejs",
16
18
  "version": "0.4.0",
17
19
  "date": "2011-08-26",
18
- "lts": false
20
+ "lts": false,
21
+ "security": false
19
22
  },
20
23
  {
21
24
  "name": "nodejs",
22
25
  "version": "0.5.0",
23
26
  "date": "2011-08-26",
24
- "lts": false
27
+ "lts": false,
28
+ "security": false
25
29
  },
26
30
  {
27
31
  "name": "nodejs",
28
32
  "version": "0.6.0",
29
33
  "date": "2011-11-04",
30
- "lts": false
34
+ "lts": false,
35
+ "security": false
31
36
  },
32
37
  {
33
38
  "name": "nodejs",
34
39
  "version": "0.7.0",
35
40
  "date": "2012-01-17",
36
- "lts": false
41
+ "lts": false,
42
+ "security": false
37
43
  },
38
44
  {
39
45
  "name": "nodejs",
40
46
  "version": "0.8.0",
41
47
  "date": "2012-06-22",
42
- "lts": false
48
+ "lts": false,
49
+ "security": false
43
50
  },
44
51
  {
45
52
  "name": "nodejs",
46
53
  "version": "0.9.0",
47
54
  "date": "2012-07-20",
48
- "lts": false
55
+ "lts": false,
56
+ "security": false
49
57
  },
50
58
  {
51
59
  "name": "nodejs",
52
60
  "version": "0.10.0",
53
61
  "date": "2013-03-11",
54
- "lts": false
62
+ "lts": false,
63
+ "security": false
55
64
  },
56
65
  {
57
66
  "name": "nodejs",
58
67
  "version": "0.11.0",
59
68
  "date": "2013-03-28",
60
- "lts": false
69
+ "lts": false,
70
+ "security": false
61
71
  },
62
72
  {
63
73
  "name": "nodejs",
64
74
  "version": "0.12.0",
65
75
  "date": "2015-02-06",
66
- "lts": false
76
+ "lts": false,
77
+ "security": false
67
78
  },
68
79
  {
69
80
  "name": "iojs",
@@ -149,744 +160,966 @@
149
160
  "name": "nodejs",
150
161
  "version": "4.0.0",
151
162
  "date": "2015-09-08",
152
- "lts": false
163
+ "lts": false,
164
+ "security": false
153
165
  },
154
166
  {
155
167
  "name": "nodejs",
156
168
  "version": "4.1.0",
157
169
  "date": "2015-09-17",
158
- "lts": false
170
+ "lts": false,
171
+ "security": false
159
172
  },
160
173
  {
161
174
  "name": "nodejs",
162
175
  "version": "4.2.0",
163
176
  "date": "2015-10-12",
164
- "lts": "Argon"
177
+ "lts": "Argon",
178
+ "security": false
165
179
  },
166
180
  {
167
181
  "name": "nodejs",
168
182
  "version": "4.3.0",
169
183
  "date": "2016-02-09",
170
- "lts": "Argon"
184
+ "lts": "Argon",
185
+ "security": false
171
186
  },
172
187
  {
173
188
  "name": "nodejs",
174
189
  "version": "4.4.0",
175
190
  "date": "2016-03-08",
176
- "lts": "Argon"
191
+ "lts": "Argon",
192
+ "security": false
177
193
  },
178
194
  {
179
195
  "name": "nodejs",
180
196
  "version": "4.5.0",
181
197
  "date": "2016-08-16",
182
- "lts": "Argon"
198
+ "lts": "Argon",
199
+ "security": false
183
200
  },
184
201
  {
185
202
  "name": "nodejs",
186
203
  "version": "4.6.0",
187
204
  "date": "2016-09-27",
188
- "lts": "Argon"
205
+ "lts": "Argon",
206
+ "security": true
189
207
  },
190
208
  {
191
209
  "name": "nodejs",
192
210
  "version": "4.7.0",
193
211
  "date": "2016-12-06",
194
- "lts": "Argon"
212
+ "lts": "Argon",
213
+ "security": false
195
214
  },
196
215
  {
197
216
  "name": "nodejs",
198
217
  "version": "4.8.0",
199
218
  "date": "2017-02-21",
200
- "lts": "Argon"
219
+ "lts": "Argon",
220
+ "security": false
201
221
  },
202
222
  {
203
223
  "name": "nodejs",
204
224
  "version": "4.9.0",
205
225
  "date": "2018-03-28",
206
- "lts": "Argon"
226
+ "lts": "Argon",
227
+ "security": true
207
228
  },
208
229
  {
209
230
  "name": "nodejs",
210
231
  "version": "5.0.0",
211
232
  "date": "2015-10-29",
212
- "lts": false
233
+ "lts": false,
234
+ "security": false
213
235
  },
214
236
  {
215
237
  "name": "nodejs",
216
238
  "version": "5.1.0",
217
239
  "date": "2015-11-17",
218
- "lts": false
240
+ "lts": false,
241
+ "security": false
219
242
  },
220
243
  {
221
244
  "name": "nodejs",
222
245
  "version": "5.2.0",
223
246
  "date": "2015-12-09",
224
- "lts": false
247
+ "lts": false,
248
+ "security": false
225
249
  },
226
250
  {
227
251
  "name": "nodejs",
228
252
  "version": "5.3.0",
229
253
  "date": "2015-12-15",
230
- "lts": false
254
+ "lts": false,
255
+ "security": false
231
256
  },
232
257
  {
233
258
  "name": "nodejs",
234
259
  "version": "5.4.0",
235
260
  "date": "2016-01-06",
236
- "lts": false
261
+ "lts": false,
262
+ "security": false
237
263
  },
238
264
  {
239
265
  "name": "nodejs",
240
266
  "version": "5.5.0",
241
267
  "date": "2016-01-21",
242
- "lts": false
268
+ "lts": false,
269
+ "security": false
243
270
  },
244
271
  {
245
272
  "name": "nodejs",
246
273
  "version": "5.6.0",
247
274
  "date": "2016-02-09",
248
- "lts": false
275
+ "lts": false,
276
+ "security": false
249
277
  },
250
278
  {
251
279
  "name": "nodejs",
252
280
  "version": "5.7.0",
253
281
  "date": "2016-02-23",
254
- "lts": false
282
+ "lts": false,
283
+ "security": false
255
284
  },
256
285
  {
257
286
  "name": "nodejs",
258
287
  "version": "5.8.0",
259
288
  "date": "2016-03-09",
260
- "lts": false
289
+ "lts": false,
290
+ "security": false
261
291
  },
262
292
  {
263
293
  "name": "nodejs",
264
294
  "version": "5.9.0",
265
295
  "date": "2016-03-16",
266
- "lts": false
296
+ "lts": false,
297
+ "security": false
267
298
  },
268
299
  {
269
300
  "name": "nodejs",
270
301
  "version": "5.10.0",
271
302
  "date": "2016-04-01",
272
- "lts": false
303
+ "lts": false,
304
+ "security": false
273
305
  },
274
306
  {
275
307
  "name": "nodejs",
276
308
  "version": "5.11.0",
277
309
  "date": "2016-04-21",
278
- "lts": false
310
+ "lts": false,
311
+ "security": false
279
312
  },
280
313
  {
281
314
  "name": "nodejs",
282
315
  "version": "5.12.0",
283
316
  "date": "2016-06-23",
284
- "lts": false
317
+ "lts": false,
318
+ "security": false
285
319
  },
286
320
  {
287
321
  "name": "nodejs",
288
322
  "version": "6.0.0",
289
323
  "date": "2016-04-26",
290
- "lts": false
324
+ "lts": false,
325
+ "security": false
291
326
  },
292
327
  {
293
328
  "name": "nodejs",
294
329
  "version": "6.1.0",
295
330
  "date": "2016-05-05",
296
- "lts": false
331
+ "lts": false,
332
+ "security": false
297
333
  },
298
334
  {
299
335
  "name": "nodejs",
300
336
  "version": "6.2.0",
301
337
  "date": "2016-05-17",
302
- "lts": false
338
+ "lts": false,
339
+ "security": false
303
340
  },
304
341
  {
305
342
  "name": "nodejs",
306
343
  "version": "6.3.0",
307
344
  "date": "2016-07-06",
308
- "lts": false
345
+ "lts": false,
346
+ "security": false
309
347
  },
310
348
  {
311
349
  "name": "nodejs",
312
350
  "version": "6.4.0",
313
351
  "date": "2016-08-12",
314
- "lts": false
352
+ "lts": false,
353
+ "security": false
315
354
  },
316
355
  {
317
356
  "name": "nodejs",
318
357
  "version": "6.5.0",
319
358
  "date": "2016-08-26",
320
- "lts": false
359
+ "lts": false,
360
+ "security": false
321
361
  },
322
362
  {
323
363
  "name": "nodejs",
324
364
  "version": "6.6.0",
325
365
  "date": "2016-09-14",
326
- "lts": false
366
+ "lts": false,
367
+ "security": false
327
368
  },
328
369
  {
329
370
  "name": "nodejs",
330
371
  "version": "6.7.0",
331
372
  "date": "2016-09-27",
332
- "lts": false
373
+ "lts": false,
374
+ "security": true
333
375
  },
334
376
  {
335
377
  "name": "nodejs",
336
378
  "version": "6.8.0",
337
379
  "date": "2016-10-12",
338
- "lts": false
380
+ "lts": false,
381
+ "security": false
339
382
  },
340
383
  {
341
384
  "name": "nodejs",
342
385
  "version": "6.9.0",
343
386
  "date": "2016-10-18",
344
- "lts": "Boron"
387
+ "lts": "Boron",
388
+ "security": false
345
389
  },
346
390
  {
347
391
  "name": "nodejs",
348
392
  "version": "6.10.0",
349
393
  "date": "2017-02-21",
350
- "lts": "Boron"
394
+ "lts": "Boron",
395
+ "security": false
351
396
  },
352
397
  {
353
398
  "name": "nodejs",
354
399
  "version": "6.11.0",
355
400
  "date": "2017-06-06",
356
- "lts": "Boron"
401
+ "lts": "Boron",
402
+ "security": false
357
403
  },
358
404
  {
359
405
  "name": "nodejs",
360
406
  "version": "6.12.0",
361
407
  "date": "2017-11-06",
362
- "lts": "Boron"
408
+ "lts": "Boron",
409
+ "security": false
363
410
  },
364
411
  {
365
412
  "name": "nodejs",
366
413
  "version": "6.13.0",
367
414
  "date": "2018-02-10",
368
- "lts": "Boron"
415
+ "lts": "Boron",
416
+ "security": false
369
417
  },
370
418
  {
371
419
  "name": "nodejs",
372
420
  "version": "6.14.0",
373
421
  "date": "2018-03-28",
374
- "lts": "Boron"
422
+ "lts": "Boron",
423
+ "security": true
375
424
  },
376
425
  {
377
426
  "name": "nodejs",
378
427
  "version": "6.15.0",
379
428
  "date": "2018-11-27",
380
- "lts": "Boron"
429
+ "lts": "Boron",
430
+ "security": true
381
431
  },
382
432
  {
383
433
  "name": "nodejs",
384
434
  "version": "6.16.0",
385
435
  "date": "2018-12-26",
386
- "lts": "Boron"
436
+ "lts": "Boron",
437
+ "security": false
387
438
  },
388
439
  {
389
440
  "name": "nodejs",
390
441
  "version": "6.17.0",
391
442
  "date": "2019-02-28",
392
- "lts": "Boron"
443
+ "lts": "Boron",
444
+ "security": true
393
445
  },
394
446
  {
395
447
  "name": "nodejs",
396
448
  "version": "7.0.0",
397
449
  "date": "2016-10-25",
398
- "lts": false
450
+ "lts": false,
451
+ "security": false
399
452
  },
400
453
  {
401
454
  "name": "nodejs",
402
455
  "version": "7.1.0",
403
456
  "date": "2016-11-08",
404
- "lts": false
457
+ "lts": false,
458
+ "security": false
405
459
  },
406
460
  {
407
461
  "name": "nodejs",
408
462
  "version": "7.2.0",
409
463
  "date": "2016-11-22",
410
- "lts": false
464
+ "lts": false,
465
+ "security": false
411
466
  },
412
467
  {
413
468
  "name": "nodejs",
414
469
  "version": "7.3.0",
415
470
  "date": "2016-12-20",
416
- "lts": false
471
+ "lts": false,
472
+ "security": false
417
473
  },
418
474
  {
419
475
  "name": "nodejs",
420
476
  "version": "7.4.0",
421
477
  "date": "2017-01-04",
422
- "lts": false
478
+ "lts": false,
479
+ "security": false
423
480
  },
424
481
  {
425
482
  "name": "nodejs",
426
483
  "version": "7.5.0",
427
484
  "date": "2017-01-31",
428
- "lts": false
485
+ "lts": false,
486
+ "security": false
429
487
  },
430
488
  {
431
489
  "name": "nodejs",
432
490
  "version": "7.6.0",
433
491
  "date": "2017-02-21",
434
- "lts": false
492
+ "lts": false,
493
+ "security": false
435
494
  },
436
495
  {
437
496
  "name": "nodejs",
438
497
  "version": "7.7.0",
439
498
  "date": "2017-02-28",
440
- "lts": false
499
+ "lts": false,
500
+ "security": false
441
501
  },
442
502
  {
443
503
  "name": "nodejs",
444
504
  "version": "7.8.0",
445
505
  "date": "2017-03-29",
446
- "lts": false
506
+ "lts": false,
507
+ "security": false
447
508
  },
448
509
  {
449
510
  "name": "nodejs",
450
511
  "version": "7.9.0",
451
512
  "date": "2017-04-11",
452
- "lts": false
513
+ "lts": false,
514
+ "security": false
453
515
  },
454
516
  {
455
517
  "name": "nodejs",
456
518
  "version": "7.10.0",
457
519
  "date": "2017-05-02",
458
- "lts": false
520
+ "lts": false,
521
+ "security": false
459
522
  },
460
523
  {
461
524
  "name": "nodejs",
462
525
  "version": "8.0.0",
463
526
  "date": "2017-05-30",
464
- "lts": false
527
+ "lts": false,
528
+ "security": false
465
529
  },
466
530
  {
467
531
  "name": "nodejs",
468
532
  "version": "8.1.0",
469
533
  "date": "2017-06-08",
470
- "lts": false
534
+ "lts": false,
535
+ "security": false
471
536
  },
472
537
  {
473
538
  "name": "nodejs",
474
539
  "version": "8.2.0",
475
540
  "date": "2017-07-19",
476
- "lts": false
541
+ "lts": false,
542
+ "security": false
477
543
  },
478
544
  {
479
545
  "name": "nodejs",
480
546
  "version": "8.3.0",
481
547
  "date": "2017-08-08",
482
- "lts": false
548
+ "lts": false,
549
+ "security": false
483
550
  },
484
551
  {
485
552
  "name": "nodejs",
486
553
  "version": "8.4.0",
487
554
  "date": "2017-08-15",
488
- "lts": false
555
+ "lts": false,
556
+ "security": false
489
557
  },
490
558
  {
491
559
  "name": "nodejs",
492
560
  "version": "8.5.0",
493
561
  "date": "2017-09-12",
494
- "lts": false
562
+ "lts": false,
563
+ "security": false
495
564
  },
496
565
  {
497
566
  "name": "nodejs",
498
567
  "version": "8.6.0",
499
568
  "date": "2017-09-26",
500
- "lts": false
569
+ "lts": false,
570
+ "security": false
501
571
  },
502
572
  {
503
573
  "name": "nodejs",
504
574
  "version": "8.7.0",
505
575
  "date": "2017-10-11",
506
- "lts": false
576
+ "lts": false,
577
+ "security": false
507
578
  },
508
579
  {
509
580
  "name": "nodejs",
510
581
  "version": "8.8.0",
511
582
  "date": "2017-10-24",
512
- "lts": false
583
+ "lts": false,
584
+ "security": false
513
585
  },
514
586
  {
515
587
  "name": "nodejs",
516
588
  "version": "8.9.0",
517
589
  "date": "2017-10-31",
518
- "lts": "Carbon"
590
+ "lts": "Carbon",
591
+ "security": false
519
592
  },
520
593
  {
521
594
  "name": "nodejs",
522
595
  "version": "8.10.0",
523
596
  "date": "2018-03-06",
524
- "lts": "Carbon"
597
+ "lts": "Carbon",
598
+ "security": false
525
599
  },
526
600
  {
527
601
  "name": "nodejs",
528
602
  "version": "8.11.0",
529
603
  "date": "2018-03-28",
530
- "lts": "Carbon"
604
+ "lts": "Carbon",
605
+ "security": true
531
606
  },
532
607
  {
533
608
  "name": "nodejs",
534
609
  "version": "8.12.0",
535
610
  "date": "2018-09-10",
536
- "lts": "Carbon"
611
+ "lts": "Carbon",
612
+ "security": false
537
613
  },
538
614
  {
539
615
  "name": "nodejs",
540
616
  "version": "8.13.0",
541
617
  "date": "2018-11-20",
542
- "lts": "Carbon"
618
+ "lts": "Carbon",
619
+ "security": false
543
620
  },
544
621
  {
545
622
  "name": "nodejs",
546
623
  "version": "8.14.0",
547
624
  "date": "2018-11-27",
548
- "lts": "Carbon"
625
+ "lts": "Carbon",
626
+ "security": true
549
627
  },
550
628
  {
551
629
  "name": "nodejs",
552
630
  "version": "8.15.0",
553
631
  "date": "2018-12-26",
554
- "lts": "Carbon"
632
+ "lts": "Carbon",
633
+ "security": false
555
634
  },
556
635
  {
557
636
  "name": "nodejs",
558
637
  "version": "8.16.0",
559
638
  "date": "2019-04-16",
560
- "lts": "Carbon"
639
+ "lts": "Carbon",
640
+ "security": false
641
+ },
642
+ {
643
+ "name": "nodejs",
644
+ "version": "8.17.0",
645
+ "date": "2019-12-17",
646
+ "lts": "Carbon",
647
+ "security": true
561
648
  },
562
649
  {
563
650
  "name": "nodejs",
564
651
  "version": "9.0.0",
565
652
  "date": "2017-10-31",
566
- "lts": false
653
+ "lts": false,
654
+ "security": false
567
655
  },
568
656
  {
569
657
  "name": "nodejs",
570
658
  "version": "9.1.0",
571
659
  "date": "2017-11-07",
572
- "lts": false
660
+ "lts": false,
661
+ "security": false
573
662
  },
574
663
  {
575
664
  "name": "nodejs",
576
665
  "version": "9.2.0",
577
666
  "date": "2017-11-14",
578
- "lts": false
667
+ "lts": false,
668
+ "security": false
579
669
  },
580
670
  {
581
671
  "name": "nodejs",
582
672
  "version": "9.3.0",
583
673
  "date": "2017-12-12",
584
- "lts": false
674
+ "lts": false,
675
+ "security": false
585
676
  },
586
677
  {
587
678
  "name": "nodejs",
588
679
  "version": "9.4.0",
589
680
  "date": "2018-01-10",
590
- "lts": false
681
+ "lts": false,
682
+ "security": false
591
683
  },
592
684
  {
593
685
  "name": "nodejs",
594
686
  "version": "9.5.0",
595
687
  "date": "2018-01-31",
596
- "lts": false
688
+ "lts": false,
689
+ "security": false
597
690
  },
598
691
  {
599
692
  "name": "nodejs",
600
693
  "version": "9.6.0",
601
694
  "date": "2018-02-21",
602
- "lts": false
695
+ "lts": false,
696
+ "security": false
603
697
  },
604
698
  {
605
699
  "name": "nodejs",
606
700
  "version": "9.7.0",
607
701
  "date": "2018-03-01",
608
- "lts": false
702
+ "lts": false,
703
+ "security": false
609
704
  },
610
705
  {
611
706
  "name": "nodejs",
612
707
  "version": "9.8.0",
613
708
  "date": "2018-03-07",
614
- "lts": false
709
+ "lts": false,
710
+ "security": false
615
711
  },
616
712
  {
617
713
  "name": "nodejs",
618
714
  "version": "9.9.0",
619
715
  "date": "2018-03-21",
620
- "lts": false
716
+ "lts": false,
717
+ "security": false
621
718
  },
622
719
  {
623
720
  "name": "nodejs",
624
721
  "version": "9.10.0",
625
722
  "date": "2018-03-28",
626
- "lts": false
723
+ "lts": false,
724
+ "security": true
627
725
  },
628
726
  {
629
727
  "name": "nodejs",
630
728
  "version": "9.11.0",
631
729
  "date": "2018-04-04",
632
- "lts": false
730
+ "lts": false,
731
+ "security": false
633
732
  },
634
733
  {
635
734
  "name": "nodejs",
636
735
  "version": "10.0.0",
637
736
  "date": "2018-04-24",
638
- "lts": false
737
+ "lts": false,
738
+ "security": false
639
739
  },
640
740
  {
641
741
  "name": "nodejs",
642
742
  "version": "10.1.0",
643
743
  "date": "2018-05-08",
644
- "lts": false
744
+ "lts": false,
745
+ "security": false
645
746
  },
646
747
  {
647
748
  "name": "nodejs",
648
749
  "version": "10.2.0",
649
750
  "date": "2018-05-23",
650
- "lts": false
751
+ "lts": false,
752
+ "security": false
651
753
  },
652
754
  {
653
755
  "name": "nodejs",
654
756
  "version": "10.3.0",
655
757
  "date": "2018-05-29",
656
- "lts": false
758
+ "lts": false,
759
+ "security": false
657
760
  },
658
761
  {
659
762
  "name": "nodejs",
660
763
  "version": "10.4.0",
661
764
  "date": "2018-06-06",
662
- "lts": false
765
+ "lts": false,
766
+ "security": false
663
767
  },
664
768
  {
665
769
  "name": "nodejs",
666
770
  "version": "10.5.0",
667
771
  "date": "2018-06-20",
668
- "lts": false
772
+ "lts": false,
773
+ "security": false
669
774
  },
670
775
  {
671
776
  "name": "nodejs",
672
777
  "version": "10.6.0",
673
778
  "date": "2018-07-04",
674
- "lts": false
779
+ "lts": false,
780
+ "security": false
675
781
  },
676
782
  {
677
783
  "name": "nodejs",
678
784
  "version": "10.7.0",
679
785
  "date": "2018-07-18",
680
- "lts": false
786
+ "lts": false,
787
+ "security": false
681
788
  },
682
789
  {
683
790
  "name": "nodejs",
684
791
  "version": "10.8.0",
685
792
  "date": "2018-08-01",
686
- "lts": false
793
+ "lts": false,
794
+ "security": false
687
795
  },
688
796
  {
689
797
  "name": "nodejs",
690
798
  "version": "10.9.0",
691
799
  "date": "2018-08-15",
692
- "lts": false
800
+ "lts": false,
801
+ "security": false
693
802
  },
694
803
  {
695
804
  "name": "nodejs",
696
805
  "version": "10.10.0",
697
806
  "date": "2018-09-06",
698
- "lts": false
807
+ "lts": false,
808
+ "security": false
699
809
  },
700
810
  {
701
811
  "name": "nodejs",
702
812
  "version": "10.11.0",
703
813
  "date": "2018-09-19",
704
- "lts": false
814
+ "lts": false,
815
+ "security": false
705
816
  },
706
817
  {
707
818
  "name": "nodejs",
708
819
  "version": "10.12.0",
709
820
  "date": "2018-10-10",
710
- "lts": false
821
+ "lts": false,
822
+ "security": false
711
823
  },
712
824
  {
713
825
  "name": "nodejs",
714
826
  "version": "10.13.0",
715
827
  "date": "2018-10-30",
716
- "lts": "Dubnium"
828
+ "lts": "Dubnium",
829
+ "security": false
717
830
  },
718
831
  {
719
832
  "name": "nodejs",
720
833
  "version": "10.14.0",
721
834
  "date": "2018-11-27",
722
- "lts": "Dubnium"
835
+ "lts": "Dubnium",
836
+ "security": true
723
837
  },
724
838
  {
725
839
  "name": "nodejs",
726
840
  "version": "10.15.0",
727
841
  "date": "2018-12-26",
728
- "lts": "Dubnium"
842
+ "lts": "Dubnium",
843
+ "security": false
729
844
  },
730
845
  {
731
846
  "name": "nodejs",
732
847
  "version": "10.16.0",
733
848
  "date": "2019-05-28",
734
- "lts": "Dubnium"
849
+ "lts": "Dubnium",
850
+ "security": false
851
+ },
852
+ {
853
+ "name": "nodejs",
854
+ "version": "10.17.0",
855
+ "date": "2019-10-21",
856
+ "lts": "Dubnium",
857
+ "security": false
858
+ },
859
+ {
860
+ "name": "nodejs",
861
+ "version": "10.18.0",
862
+ "date": "2019-12-16",
863
+ "lts": "Dubnium",
864
+ "security": true
735
865
  },
736
866
  {
737
867
  "name": "nodejs",
738
868
  "version": "11.0.0",
739
869
  "date": "2018-10-23",
740
- "lts": false
870
+ "lts": false,
871
+ "security": false
741
872
  },
742
873
  {
743
874
  "name": "nodejs",
744
875
  "version": "11.1.0",
745
876
  "date": "2018-10-30",
746
- "lts": false
877
+ "lts": false,
878
+ "security": false
747
879
  },
748
880
  {
749
881
  "name": "nodejs",
750
882
  "version": "11.2.0",
751
883
  "date": "2018-11-15",
752
- "lts": false
884
+ "lts": false,
885
+ "security": false
753
886
  },
754
887
  {
755
888
  "name": "nodejs",
756
889
  "version": "11.3.0",
757
890
  "date": "2018-11-27",
758
- "lts": false
891
+ "lts": false,
892
+ "security": true
759
893
  },
760
894
  {
761
895
  "name": "nodejs",
762
896
  "version": "11.4.0",
763
897
  "date": "2018-12-07",
764
- "lts": false
898
+ "lts": false,
899
+ "security": false
765
900
  },
766
901
  {
767
902
  "name": "nodejs",
768
903
  "version": "11.5.0",
769
904
  "date": "2018-12-18",
770
- "lts": false
905
+ "lts": false,
906
+ "security": false
771
907
  },
772
908
  {
773
909
  "name": "nodejs",
774
910
  "version": "11.6.0",
775
911
  "date": "2018-12-26",
776
- "lts": false
912
+ "lts": false,
913
+ "security": false
777
914
  },
778
915
  {
779
916
  "name": "nodejs",
780
917
  "version": "11.7.0",
781
918
  "date": "2019-01-17",
782
- "lts": false
919
+ "lts": false,
920
+ "security": false
783
921
  },
784
922
  {
785
923
  "name": "nodejs",
786
924
  "version": "11.8.0",
787
925
  "date": "2019-01-24",
788
- "lts": false
926
+ "lts": false,
927
+ "security": false
789
928
  },
790
929
  {
791
930
  "name": "nodejs",
792
931
  "version": "11.9.0",
793
932
  "date": "2019-01-30",
794
- "lts": false
933
+ "lts": false,
934
+ "security": false
795
935
  },
796
936
  {
797
937
  "name": "nodejs",
798
938
  "version": "11.10.0",
799
939
  "date": "2019-02-14",
800
- "lts": false
940
+ "lts": false,
941
+ "security": false
801
942
  },
802
943
  {
803
944
  "name": "nodejs",
804
945
  "version": "11.11.0",
805
946
  "date": "2019-03-05",
806
- "lts": false
947
+ "lts": false,
948
+ "security": false
807
949
  },
808
950
  {
809
951
  "name": "nodejs",
810
952
  "version": "11.12.0",
811
953
  "date": "2019-03-14",
812
- "lts": false
954
+ "lts": false,
955
+ "security": false
813
956
  },
814
957
  {
815
958
  "name": "nodejs",
816
959
  "version": "11.13.0",
817
960
  "date": "2019-03-28",
818
- "lts": false
961
+ "lts": false,
962
+ "security": false
819
963
  },
820
964
  {
821
965
  "name": "nodejs",
822
966
  "version": "11.14.0",
823
967
  "date": "2019-04-10",
824
- "lts": false
968
+ "lts": false,
969
+ "security": false
825
970
  },
826
971
  {
827
972
  "name": "nodejs",
828
973
  "version": "11.15.0",
829
974
  "date": "2019-04-30",
830
- "lts": false
975
+ "lts": false,
976
+ "security": false
831
977
  },
832
978
  {
833
979
  "name": "nodejs",
834
980
  "version": "12.0.0",
835
981
  "date": "2019-04-23",
836
- "lts": false
982
+ "lts": false,
983
+ "security": false
837
984
  },
838
985
  {
839
986
  "name": "nodejs",
840
987
  "version": "12.1.0",
841
988
  "date": "2019-04-29",
842
- "lts": false
989
+ "lts": false,
990
+ "security": false
843
991
  },
844
992
  {
845
993
  "name": "nodejs",
846
994
  "version": "12.2.0",
847
995
  "date": "2019-05-07",
848
- "lts": false
996
+ "lts": false,
997
+ "security": false
849
998
  },
850
999
  {
851
1000
  "name": "nodejs",
852
1001
  "version": "12.3.0",
853
1002
  "date": "2019-05-21",
854
- "lts": false
1003
+ "lts": false,
1004
+ "security": false
855
1005
  },
856
1006
  {
857
1007
  "name": "nodejs",
858
1008
  "version": "12.4.0",
859
1009
  "date": "2019-06-04",
860
- "lts": false
1010
+ "lts": false,
1011
+ "security": false
861
1012
  },
862
1013
  {
863
1014
  "name": "nodejs",
864
1015
  "version": "12.5.0",
865
1016
  "date": "2019-06-26",
866
- "lts": false
1017
+ "lts": false,
1018
+ "security": false
867
1019
  },
868
1020
  {
869
1021
  "name": "nodejs",
870
1022
  "version": "12.6.0",
871
1023
  "date": "2019-07-03",
872
- "lts": false
1024
+ "lts": false,
1025
+ "security": false
873
1026
  },
874
1027
  {
875
1028
  "name": "nodejs",
876
1029
  "version": "12.7.0",
877
1030
  "date": "2019-07-23",
878
- "lts": false
1031
+ "lts": false,
1032
+ "security": false
879
1033
  },
880
1034
  {
881
1035
  "name": "nodejs",
882
1036
  "version": "12.8.0",
883
1037
  "date": "2019-08-06",
884
- "lts": false
1038
+ "lts": false,
1039
+ "security": false
885
1040
  },
886
1041
  {
887
1042
  "name": "nodejs",
888
1043
  "version": "12.9.0",
889
1044
  "date": "2019-08-20",
890
- "lts": false
1045
+ "lts": false,
1046
+ "security": false
1047
+ },
1048
+ {
1049
+ "name": "nodejs",
1050
+ "version": "12.10.0",
1051
+ "date": "2019-09-04",
1052
+ "lts": false,
1053
+ "security": false
1054
+ },
1055
+ {
1056
+ "name": "nodejs",
1057
+ "version": "12.11.0",
1058
+ "date": "2019-09-25",
1059
+ "lts": false,
1060
+ "security": false
1061
+ },
1062
+ {
1063
+ "name": "nodejs",
1064
+ "version": "12.12.0",
1065
+ "date": "2019-10-11",
1066
+ "lts": false,
1067
+ "security": false
1068
+ },
1069
+ {
1070
+ "name": "nodejs",
1071
+ "version": "12.13.0",
1072
+ "date": "2019-10-21",
1073
+ "lts": "Erbium",
1074
+ "security": false
1075
+ },
1076
+ {
1077
+ "name": "nodejs",
1078
+ "version": "12.14.0",
1079
+ "date": "2019-12-16",
1080
+ "lts": "Erbium",
1081
+ "security": true
1082
+ },
1083
+ {
1084
+ "name": "nodejs",
1085
+ "version": "13.0.0",
1086
+ "date": "2019-10-10",
1087
+ "lts": false,
1088
+ "security": false
1089
+ },
1090
+ {
1091
+ "name": "nodejs",
1092
+ "version": "13.1.0",
1093
+ "date": "2019-11-05",
1094
+ "lts": false,
1095
+ "security": false
1096
+ },
1097
+ {
1098
+ "name": "nodejs",
1099
+ "version": "13.2.0",
1100
+ "date": "2019-11-21",
1101
+ "lts": false,
1102
+ "security": false
1103
+ },
1104
+ {
1105
+ "name": "nodejs",
1106
+ "version": "13.3.0",
1107
+ "date": "2019-12-03",
1108
+ "lts": false,
1109
+ "security": false
1110
+ },
1111
+ {
1112
+ "name": "nodejs",
1113
+ "version": "13.4.0",
1114
+ "date": "2019-12-17",
1115
+ "lts": false,
1116
+ "security": true
1117
+ },
1118
+ {
1119
+ "name": "nodejs",
1120
+ "version": "13.5.0",
1121
+ "date": "2019-12-18",
1122
+ "lts": false,
1123
+ "security": false
891
1124
  }
892
1125
  ]