@playdrop/playdrop-cli 0.14.7 → 0.14.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (179) hide show
  1. package/config/client-meta.json +2 -2
  2. package/dist/commands/worker.d.ts +1 -1
  3. package/dist/commands/worker.js +29 -8
  4. package/dist/index.js +1 -1
  5. package/node_modules/@playdrop/config/client-meta.json +2 -2
  6. package/node_modules/@playwright/mcp/LICENSE +201 -0
  7. package/node_modules/@playwright/mcp/README.md +1592 -0
  8. package/node_modules/@playwright/mcp/cli.js +32 -0
  9. package/node_modules/@playwright/mcp/config.d.ts +239 -0
  10. package/node_modules/@playwright/mcp/index.d.ts +23 -0
  11. package/node_modules/@playwright/mcp/index.js +19 -0
  12. package/node_modules/@playwright/mcp/node_modules/playwright/LICENSE +202 -0
  13. package/node_modules/@playwright/mcp/node_modules/playwright/NOTICE +5 -0
  14. package/node_modules/@playwright/mcp/node_modules/playwright/README.md +318 -0
  15. package/node_modules/@playwright/mcp/node_modules/playwright/ThirdPartyNotices.txt +14 -0
  16. package/node_modules/@playwright/mcp/node_modules/playwright/cli.js +19 -0
  17. package/node_modules/@playwright/mcp/node_modules/playwright/index.d.ts +17 -0
  18. package/node_modules/@playwright/mcp/node_modules/playwright/index.js +17 -0
  19. package/node_modules/@playwright/mcp/node_modules/playwright/index.mjs +18 -0
  20. package/node_modules/@playwright/mcp/node_modules/playwright/jsx-runtime.js +42 -0
  21. package/node_modules/@playwright/mcp/node_modules/playwright/jsx-runtime.mjs +21 -0
  22. package/node_modules/@playwright/mcp/node_modules/playwright/lib/agents/agentParser.js +89 -0
  23. package/node_modules/@playwright/mcp/node_modules/playwright/lib/agents/copilot-setup-steps.yml +34 -0
  24. package/node_modules/@playwright/mcp/node_modules/playwright/lib/agents/generateAgents.js +395 -0
  25. package/node_modules/@playwright/mcp/node_modules/playwright/lib/agents/playwright-test-coverage.prompt.md +31 -0
  26. package/node_modules/@playwright/mcp/node_modules/playwright/lib/agents/playwright-test-generate.prompt.md +8 -0
  27. package/node_modules/@playwright/mcp/node_modules/playwright/lib/agents/playwright-test-generator.agent.md +88 -0
  28. package/node_modules/@playwright/mcp/node_modules/playwright/lib/agents/playwright-test-heal.prompt.md +6 -0
  29. package/node_modules/@playwright/mcp/node_modules/playwright/lib/agents/playwright-test-healer.agent.md +56 -0
  30. package/node_modules/@playwright/mcp/node_modules/playwright/lib/agents/playwright-test-plan.prompt.md +9 -0
  31. package/node_modules/@playwright/mcp/node_modules/playwright/lib/agents/playwright-test-planner.agent.md +74 -0
  32. package/node_modules/@playwright/mcp/node_modules/playwright/lib/cli/reportActions.js +78 -0
  33. package/node_modules/@playwright/mcp/node_modules/playwright/lib/cli/testActions.js +213 -0
  34. package/node_modules/@playwright/mcp/node_modules/playwright/lib/common/index.js +2966 -0
  35. package/node_modules/@playwright/mcp/node_modules/playwright/lib/common/index.js.txt +34 -0
  36. package/node_modules/@playwright/mcp/node_modules/playwright/lib/errorContext.js +129 -0
  37. package/node_modules/@playwright/mcp/node_modules/playwright/lib/globals.js +58 -0
  38. package/node_modules/@playwright/mcp/node_modules/playwright/lib/index.js +783 -0
  39. package/node_modules/@playwright/mcp/node_modules/playwright/lib/isomorphic.js +260 -0
  40. package/node_modules/@playwright/mcp/node_modules/playwright/lib/isomorphic.js.txt +9 -0
  41. package/node_modules/@playwright/mcp/node_modules/playwright/lib/loader/loaderProcessEntry.js +34 -0
  42. package/node_modules/@playwright/mcp/node_modules/playwright/lib/loader/loaderProcessEntry.js.txt +9 -0
  43. package/node_modules/@playwright/mcp/node_modules/playwright/lib/matchers/expect.js +13480 -0
  44. package/node_modules/@playwright/mcp/node_modules/playwright/lib/matchers/expect.js.LICENSE +640 -0
  45. package/node_modules/@playwright/mcp/node_modules/playwright/lib/matchers/expect.js.txt +67 -0
  46. package/node_modules/@playwright/mcp/node_modules/playwright/lib/mcp/test/browserBackend.js +125 -0
  47. package/node_modules/@playwright/mcp/node_modules/playwright/lib/mcp/test/generatorTools.js +122 -0
  48. package/node_modules/@playwright/mcp/node_modules/playwright/lib/mcp/test/plannerTools.js +150 -0
  49. package/node_modules/@playwright/mcp/node_modules/playwright/lib/mcp/test/seed.js +82 -0
  50. package/node_modules/@playwright/mcp/node_modules/playwright/lib/mcp/test/streams.js +44 -0
  51. package/node_modules/@playwright/mcp/node_modules/playwright/lib/mcp/test/testBackend.js +99 -0
  52. package/node_modules/@playwright/mcp/node_modules/playwright/lib/mcp/test/testContext.js +306 -0
  53. package/node_modules/@playwright/mcp/node_modules/playwright/lib/mcp/test/testTool.js +30 -0
  54. package/node_modules/@playwright/mcp/node_modules/playwright/lib/mcp/test/testTools.js +98 -0
  55. package/node_modules/@playwright/mcp/node_modules/playwright/lib/package.js +47 -0
  56. package/node_modules/@playwright/mcp/node_modules/playwright/lib/program.js +237 -0
  57. package/node_modules/@playwright/mcp/node_modules/playwright/lib/runner/index.js +8154 -0
  58. package/node_modules/@playwright/mcp/node_modules/playwright/lib/runner/index.js.txt +59 -0
  59. package/node_modules/@playwright/mcp/node_modules/playwright/lib/transform/babelBundle.js +72275 -0
  60. package/node_modules/@playwright/mcp/node_modules/playwright/lib/transform/babelBundle.js.LICENSE +2384 -0
  61. package/node_modules/@playwright/mcp/node_modules/playwright/lib/transform/babelBundle.js.txt +325 -0
  62. package/node_modules/@playwright/mcp/node_modules/playwright/lib/transform/esmLoader.js +8060 -0
  63. package/node_modules/@playwright/mcp/node_modules/playwright/lib/transform/esmLoader.js.LICENSE +355 -0
  64. package/node_modules/@playwright/mcp/node_modules/playwright/lib/transform/esmLoader.js.txt +60 -0
  65. package/node_modules/@playwright/mcp/node_modules/playwright/lib/util.js +373 -0
  66. package/node_modules/@playwright/mcp/node_modules/playwright/lib/worker/workerProcessEntry.js +1850 -0
  67. package/node_modules/@playwright/mcp/node_modules/playwright/lib/worker/workerProcessEntry.js.txt +19 -0
  68. package/node_modules/@playwright/mcp/node_modules/playwright/package.json +58 -0
  69. package/node_modules/@playwright/mcp/node_modules/playwright/test.d.ts +18 -0
  70. package/node_modules/@playwright/mcp/node_modules/playwright/test.js +24 -0
  71. package/node_modules/@playwright/mcp/node_modules/playwright/test.mjs +35 -0
  72. package/node_modules/@playwright/mcp/node_modules/playwright/types/test.d.ts +10709 -0
  73. package/node_modules/@playwright/mcp/node_modules/playwright/types/testReporter.d.ts +908 -0
  74. package/node_modules/@playwright/mcp/node_modules/playwright-core/LICENSE +202 -0
  75. package/node_modules/@playwright/mcp/node_modules/playwright-core/NOTICE +5 -0
  76. package/node_modules/@playwright/mcp/node_modules/playwright-core/README.md +3 -0
  77. package/node_modules/@playwright/mcp/node_modules/playwright-core/ThirdPartyNotices.txt +13 -0
  78. package/node_modules/@playwright/mcp/node_modules/playwright-core/bin/install_media_pack.ps1 +5 -0
  79. package/node_modules/@playwright/mcp/node_modules/playwright-core/bin/install_webkit_wsl.ps1 +33 -0
  80. package/node_modules/@playwright/mcp/node_modules/playwright-core/bin/reinstall_chrome_beta_linux.sh +42 -0
  81. package/node_modules/@playwright/mcp/node_modules/playwright-core/bin/reinstall_chrome_beta_mac.sh +13 -0
  82. package/node_modules/@playwright/mcp/node_modules/playwright-core/bin/reinstall_chrome_beta_win.ps1 +24 -0
  83. package/node_modules/@playwright/mcp/node_modules/playwright-core/bin/reinstall_chrome_stable_linux.sh +42 -0
  84. package/node_modules/@playwright/mcp/node_modules/playwright-core/bin/reinstall_chrome_stable_mac.sh +12 -0
  85. package/node_modules/@playwright/mcp/node_modules/playwright-core/bin/reinstall_chrome_stable_win.ps1 +24 -0
  86. package/node_modules/@playwright/mcp/node_modules/playwright-core/bin/reinstall_msedge_beta_linux.sh +48 -0
  87. package/node_modules/@playwright/mcp/node_modules/playwright-core/bin/reinstall_msedge_beta_mac.sh +11 -0
  88. package/node_modules/@playwright/mcp/node_modules/playwright-core/bin/reinstall_msedge_beta_win.ps1 +23 -0
  89. package/node_modules/@playwright/mcp/node_modules/playwright-core/bin/reinstall_msedge_dev_linux.sh +48 -0
  90. package/node_modules/@playwright/mcp/node_modules/playwright-core/bin/reinstall_msedge_dev_mac.sh +11 -0
  91. package/node_modules/@playwright/mcp/node_modules/playwright-core/bin/reinstall_msedge_dev_win.ps1 +23 -0
  92. package/node_modules/@playwright/mcp/node_modules/playwright-core/bin/reinstall_msedge_stable_linux.sh +48 -0
  93. package/node_modules/@playwright/mcp/node_modules/playwright-core/bin/reinstall_msedge_stable_mac.sh +11 -0
  94. package/node_modules/@playwright/mcp/node_modules/playwright-core/bin/reinstall_msedge_stable_win.ps1 +24 -0
  95. package/node_modules/@playwright/mcp/node_modules/playwright-core/browsers.json +81 -0
  96. package/node_modules/@playwright/mcp/node_modules/playwright-core/cli.js +21 -0
  97. package/node_modules/@playwright/mcp/node_modules/playwright-core/index.d.ts +17 -0
  98. package/node_modules/@playwright/mcp/node_modules/playwright-core/index.js +17 -0
  99. package/node_modules/@playwright/mcp/node_modules/playwright-core/index.mjs +28 -0
  100. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/bootstrap.js +88 -0
  101. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/coreBundle.js +74495 -0
  102. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/entry/cliDaemon.js +5 -0
  103. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/entry/dashboardApp.js +3 -0
  104. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/entry/mcp.js +10 -0
  105. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/entry/oopBrowserDownload.js +3 -0
  106. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/package.js +50 -0
  107. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/server/chromium/appIcon.png +0 -0
  108. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/server/electron/loader.js +118 -0
  109. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/serverRegistry.js +7347 -0
  110. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/serverRegistry.js.LICENSE +354 -0
  111. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/tools/cli-client/channelSessions.js +141 -0
  112. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/tools/cli-client/cli.js +6 -0
  113. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/tools/cli-client/help.json +707 -0
  114. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/tools/cli-client/minimist.js +128 -0
  115. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/tools/cli-client/output.js +343 -0
  116. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/tools/cli-client/program.js +404 -0
  117. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/tools/cli-client/registry.js +176 -0
  118. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/tools/cli-client/session.js +258 -0
  119. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/tools/cli-client/skill/SKILL.md +420 -0
  120. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/tools/cli-client/skill/references/element-attributes.md +23 -0
  121. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/tools/cli-client/skill/references/playwright-tests.md +39 -0
  122. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/tools/cli-client/skill/references/request-mocking.md +87 -0
  123. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/tools/cli-client/skill/references/running-code.md +241 -0
  124. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/tools/cli-client/skill/references/session-management.md +225 -0
  125. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/tools/cli-client/skill/references/storage-state.md +275 -0
  126. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/tools/cli-client/skill/references/test-generation.md +433 -0
  127. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/tools/cli-client/skill/references/tracing.md +139 -0
  128. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/tools/cli-client/skill/references/video-recording.md +143 -0
  129. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/tools/dashboard/appIcon.png +0 -0
  130. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/tools/trace/SKILL.md +171 -0
  131. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/tools/utils/extension.js +78 -0
  132. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/tools/utils/socketConnection.js +108 -0
  133. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/utilsBundle.js +90764 -0
  134. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/utilsBundle.js.LICENSE +2179 -0
  135. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/dashboard/assets/codicon-DCmgc-ay.ttf +0 -0
  136. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/dashboard/assets/firefox-1bWoP6pv.svg +1 -0
  137. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/dashboard/assets/firefox-beta-k3eOH_eK.svg +1 -0
  138. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/dashboard/assets/firefox-nightly-Cp5nfeDT.svg +1 -0
  139. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/dashboard/assets/index-CyWAfh-p.js +11 -0
  140. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/dashboard/assets/index-DhC616m4.css +1 -0
  141. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/dashboard/assets/safari-na3_-uQk.svg +1 -0
  142. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/dashboard/index.html +29 -0
  143. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/dashboard/playwright-logo.svg +24 -0
  144. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/htmlReport/index.html +16 -0
  145. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/htmlReport/report.css +2 -0
  146. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/htmlReport/report.js +32 -0
  147. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/recorder/assets/codeMirrorModule--QdMvsKi.css +1 -0
  148. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/recorder/assets/codeMirrorModule-BVGIAA-i.js +32 -0
  149. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/recorder/assets/codicon-DCmgc-ay.ttf +0 -0
  150. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/recorder/assets/index-BQ57a3QC.js +129 -0
  151. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/recorder/assets/index-l_lX622x.css +1 -0
  152. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/recorder/index.html +29 -0
  153. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/recorder/playwright-logo.svg +9 -0
  154. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/traceViewer/assets/codeMirrorModule-BSEO6m_i.js +32 -0
  155. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/traceViewer/assets/defaultSettingsView-CT5oRh4X.js +181 -0
  156. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/traceViewer/assets/urlMatch-L3liM589.js +1 -0
  157. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/traceViewer/assets/xtermModule-BN2nOuEV.js +7 -0
  158. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/traceViewer/codeMirrorModule.-QdMvsKi.css +1 -0
  159. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/traceViewer/codicon.DCmgc-ay.ttf +0 -0
  160. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/traceViewer/defaultSettingsView.BLFoOugd.css +1 -0
  161. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/traceViewer/index.B_TqY17P.css +1 -0
  162. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/traceViewer/index.DLSGjmWZ.js +1 -0
  163. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/traceViewer/index.html +44 -0
  164. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/traceViewer/manifest.webmanifest +16 -0
  165. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/traceViewer/playwright-logo.svg +9 -0
  166. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/traceViewer/snapshot.B_Jk1wbt.js +1 -0
  167. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/traceViewer/snapshot.html +10 -0
  168. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/traceViewer/sw.bundle.js +4 -0
  169. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/traceViewer/uiMode.C7UW1sC9.css +1 -0
  170. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/traceViewer/uiMode.CZvydVOh.js +5 -0
  171. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/traceViewer/uiMode.html +18 -0
  172. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/traceViewer/xtermModule.kHJ-D0s7.css +1 -0
  173. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/xdg-open +1267 -0
  174. package/node_modules/@playwright/mcp/node_modules/playwright-core/package.json +34 -0
  175. package/node_modules/@playwright/mcp/node_modules/playwright-core/types/protocol.d.ts +24842 -0
  176. package/node_modules/@playwright/mcp/node_modules/playwright-core/types/structs.d.ts +45 -0
  177. package/node_modules/@playwright/mcp/node_modules/playwright-core/types/types.d.ts +26088 -0
  178. package/node_modules/@playwright/mcp/package.json +51 -0
  179. package/package.json +3 -1
@@ -0,0 +1,2384 @@
1
+ packages/playwright/lib/transform/babelBundle.js
2
+
3
+ THIRD-PARTY SOFTWARE NOTICES AND INFORMATION
4
+
5
+ The following npm packages are inlined into this bundle.
6
+
7
+ - @babel/code-frame@7.29.7 (https://github.com/babel/babel)
8
+ - @babel/compat-data@7.29.7 (https://github.com/babel/babel)
9
+ - @babel/core@7.29.7 (https://github.com/babel/babel)
10
+ - @babel/generator@7.29.7 (https://github.com/babel/babel)
11
+ - @babel/helper-annotate-as-pure@7.29.7 (https://github.com/babel/babel)
12
+ - @babel/helper-compilation-targets@7.29.7 (https://github.com/babel/babel)
13
+ - @babel/helper-create-class-features-plugin@7.29.7 (https://github.com/babel/babel)
14
+ - @babel/helper-globals@7.29.7 (https://github.com/babel/babel)
15
+ - @babel/helper-member-expression-to-functions@7.29.7 (https://github.com/babel/babel)
16
+ - @babel/helper-module-imports@7.29.7 (https://github.com/babel/babel)
17
+ - @babel/helper-module-transforms@7.29.7 (https://github.com/babel/babel)
18
+ - @babel/helper-optimise-call-expression@7.29.7 (https://github.com/babel/babel)
19
+ - @babel/helper-plugin-utils@7.29.7 (https://github.com/babel/babel)
20
+ - @babel/helper-replace-supers@7.29.7 (https://github.com/babel/babel)
21
+ - @babel/helper-skip-transparent-expression-wrappers@7.29.7 (https://github.com/babel/babel)
22
+ - @babel/helper-string-parser@7.29.7 (https://github.com/babel/babel)
23
+ - @babel/helper-validator-identifier@7.29.7 (https://github.com/babel/babel)
24
+ - @babel/helper-validator-option@7.29.7 (https://github.com/babel/babel)
25
+ - @babel/helpers@7.29.7 (https://github.com/babel/babel)
26
+ - @babel/parser@7.29.7 (https://github.com/babel/babel)
27
+ - @babel/plugin-proposal-decorators@7.29.7 (https://github.com/babel/babel)
28
+ - @babel/plugin-syntax-async-generators@7.8.4 (https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-async-generators)
29
+ - @babel/plugin-syntax-decorators@7.29.7 (https://github.com/babel/babel)
30
+ - @babel/plugin-syntax-import-attributes@7.29.7 (https://github.com/babel/babel)
31
+ - @babel/plugin-syntax-json-strings@7.8.3 (https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-json-strings)
32
+ - @babel/plugin-syntax-jsx@7.29.7 (https://github.com/babel/babel)
33
+ - @babel/plugin-syntax-object-rest-spread@7.8.3 (https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-object-rest-spread)
34
+ - @babel/plugin-syntax-optional-catch-binding@7.8.3 (https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-optional-catch-binding)
35
+ - @babel/plugin-syntax-typescript@7.29.7 (https://github.com/babel/babel)
36
+ - @babel/plugin-transform-class-properties@7.29.7 (https://github.com/babel/babel)
37
+ - @babel/plugin-transform-class-static-block@7.29.7 (https://github.com/babel/babel)
38
+ - @babel/plugin-transform-destructuring@7.29.7 (https://github.com/babel/babel)
39
+ - @babel/plugin-transform-explicit-resource-management@7.29.7 (https://github.com/babel/babel)
40
+ - @babel/plugin-transform-export-namespace-from@7.29.7 (https://github.com/babel/babel)
41
+ - @babel/plugin-transform-logical-assignment-operators@7.29.7 (https://github.com/babel/babel)
42
+ - @babel/plugin-transform-modules-commonjs@7.29.7 (https://github.com/babel/babel)
43
+ - @babel/plugin-transform-nullish-coalescing-operator@7.29.7 (https://github.com/babel/babel)
44
+ - @babel/plugin-transform-numeric-separator@7.29.7 (https://github.com/babel/babel)
45
+ - @babel/plugin-transform-optional-chaining@7.29.7 (https://github.com/babel/babel)
46
+ - @babel/plugin-transform-private-methods@7.29.7 (https://github.com/babel/babel)
47
+ - @babel/plugin-transform-react-jsx@7.29.7 (https://github.com/babel/babel)
48
+ - @babel/plugin-transform-typescript@7.29.7 (https://github.com/babel/babel)
49
+ - @babel/preset-typescript@7.29.7 (https://github.com/babel/babel)
50
+ - @babel/template@7.29.7 (https://github.com/babel/babel)
51
+ - @babel/traverse@7.29.7 (https://github.com/babel/babel)
52
+ - @babel/types@7.29.7 (https://github.com/babel/babel)
53
+ - @jridgewell/gen-mapping@0.3.13 (https://github.com/jridgewell/sourcemaps)
54
+ - @jridgewell/remapping@2.3.5 (https://github.com/jridgewell/sourcemaps)
55
+ - @jridgewell/resolve-uri@3.1.2 (https://github.com/jridgewell/resolve-uri)
56
+ - @jridgewell/sourcemap-codec@1.5.5 (https://github.com/jridgewell/sourcemaps)
57
+ - @jridgewell/trace-mapping@0.3.31 (https://github.com/jridgewell/sourcemaps)
58
+ - baseline-browser-mapping@2.10.40 (https://github.com/web-platform-dx/baseline-browser-mapping)
59
+ - browserslist@4.28.4 (https://github.com/browserslist/browserslist)
60
+ - caniuse-lite@1.0.30001799 (https://github.com/browserslist/caniuse-lite)
61
+ - convert-source-map@2.0.0 (https://github.com/thlorenz/convert-source-map)
62
+ - debug@4.4.3 (https://github.com/debug-js/debug)
63
+ - electron-to-chromium@1.5.381 (https://github.com/Kilian/electron-to-chromium)
64
+ - gensync@1.0.0-beta.2 (https://github.com/loganfsmyth/gensync)
65
+ - has-flag@4.0.0 (https://github.com/sindresorhus/has-flag)
66
+ - js-tokens@4.0.0 (https://github.com/lydell/js-tokens)
67
+ - jsesc@3.1.0 (https://github.com/mathiasbynens/jsesc)
68
+ - json5@2.2.3 (https://github.com/json5/json5)
69
+ - lru-cache@5.1.1 (https://github.com/isaacs/node-lru-cache)
70
+ - ms@2.1.3 (https://github.com/vercel/ms)
71
+ - node-releases@2.0.50 (https://github.com/chicoxyzzy/node-releases)
72
+ - picocolors@1.1.1 (https://github.com/alexeyraspopov/picocolors)
73
+ - semver@6.3.1 (https://github.com/npm/node-semver)
74
+ - supports-color@7.2.0 (https://github.com/chalk/supports-color)
75
+ - yallist@3.1.1 (https://github.com/isaacs/yallist)
76
+
77
+ %% @babel/code-frame@7.29.7 NOTICES AND INFORMATION BEGIN HERE
78
+ =========================================
79
+ MIT License
80
+
81
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
82
+
83
+ Permission is hereby granted, free of charge, to any person obtaining
84
+ a copy of this software and associated documentation files (the
85
+ "Software"), to deal in the Software without restriction, including
86
+ without limitation the rights to use, copy, modify, merge, publish,
87
+ distribute, sublicense, and/or sell copies of the Software, and to
88
+ permit persons to whom the Software is furnished to do so, subject to
89
+ the following conditions:
90
+
91
+ The above copyright notice and this permission notice shall be
92
+ included in all copies or substantial portions of the Software.
93
+
94
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
95
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
96
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
97
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
98
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
99
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
100
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
101
+ =========================================
102
+ END OF @babel/code-frame@7.29.7 NOTICES AND INFORMATION
103
+
104
+ %% @babel/compat-data@7.29.7 NOTICES AND INFORMATION BEGIN HERE
105
+ =========================================
106
+ MIT License
107
+
108
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
109
+
110
+ Permission is hereby granted, free of charge, to any person obtaining
111
+ a copy of this software and associated documentation files (the
112
+ "Software"), to deal in the Software without restriction, including
113
+ without limitation the rights to use, copy, modify, merge, publish,
114
+ distribute, sublicense, and/or sell copies of the Software, and to
115
+ permit persons to whom the Software is furnished to do so, subject to
116
+ the following conditions:
117
+
118
+ The above copyright notice and this permission notice shall be
119
+ included in all copies or substantial portions of the Software.
120
+
121
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
122
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
123
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
124
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
125
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
126
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
127
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
128
+ =========================================
129
+ END OF @babel/compat-data@7.29.7 NOTICES AND INFORMATION
130
+
131
+ %% @babel/core@7.29.7 NOTICES AND INFORMATION BEGIN HERE
132
+ =========================================
133
+ MIT License
134
+
135
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
136
+
137
+ Permission is hereby granted, free of charge, to any person obtaining
138
+ a copy of this software and associated documentation files (the
139
+ "Software"), to deal in the Software without restriction, including
140
+ without limitation the rights to use, copy, modify, merge, publish,
141
+ distribute, sublicense, and/or sell copies of the Software, and to
142
+ permit persons to whom the Software is furnished to do so, subject to
143
+ the following conditions:
144
+
145
+ The above copyright notice and this permission notice shall be
146
+ included in all copies or substantial portions of the Software.
147
+
148
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
149
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
150
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
151
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
152
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
153
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
154
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
155
+ =========================================
156
+ END OF @babel/core@7.29.7 NOTICES AND INFORMATION
157
+
158
+ %% @babel/generator@7.29.7 NOTICES AND INFORMATION BEGIN HERE
159
+ =========================================
160
+ MIT License
161
+
162
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
163
+
164
+ Permission is hereby granted, free of charge, to any person obtaining
165
+ a copy of this software and associated documentation files (the
166
+ "Software"), to deal in the Software without restriction, including
167
+ without limitation the rights to use, copy, modify, merge, publish,
168
+ distribute, sublicense, and/or sell copies of the Software, and to
169
+ permit persons to whom the Software is furnished to do so, subject to
170
+ the following conditions:
171
+
172
+ The above copyright notice and this permission notice shall be
173
+ included in all copies or substantial portions of the Software.
174
+
175
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
176
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
177
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
178
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
179
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
180
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
181
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
182
+ =========================================
183
+ END OF @babel/generator@7.29.7 NOTICES AND INFORMATION
184
+
185
+ %% @babel/helper-annotate-as-pure@7.29.7 NOTICES AND INFORMATION BEGIN HERE
186
+ =========================================
187
+ MIT License
188
+
189
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
190
+
191
+ Permission is hereby granted, free of charge, to any person obtaining
192
+ a copy of this software and associated documentation files (the
193
+ "Software"), to deal in the Software without restriction, including
194
+ without limitation the rights to use, copy, modify, merge, publish,
195
+ distribute, sublicense, and/or sell copies of the Software, and to
196
+ permit persons to whom the Software is furnished to do so, subject to
197
+ the following conditions:
198
+
199
+ The above copyright notice and this permission notice shall be
200
+ included in all copies or substantial portions of the Software.
201
+
202
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
203
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
204
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
205
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
206
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
207
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
208
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
209
+ =========================================
210
+ END OF @babel/helper-annotate-as-pure@7.29.7 NOTICES AND INFORMATION
211
+
212
+ %% @babel/helper-compilation-targets@7.29.7 NOTICES AND INFORMATION BEGIN HERE
213
+ =========================================
214
+ MIT License
215
+
216
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
217
+
218
+ Permission is hereby granted, free of charge, to any person obtaining
219
+ a copy of this software and associated documentation files (the
220
+ "Software"), to deal in the Software without restriction, including
221
+ without limitation the rights to use, copy, modify, merge, publish,
222
+ distribute, sublicense, and/or sell copies of the Software, and to
223
+ permit persons to whom the Software is furnished to do so, subject to
224
+ the following conditions:
225
+
226
+ The above copyright notice and this permission notice shall be
227
+ included in all copies or substantial portions of the Software.
228
+
229
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
230
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
231
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
232
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
233
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
234
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
235
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
236
+ =========================================
237
+ END OF @babel/helper-compilation-targets@7.29.7 NOTICES AND INFORMATION
238
+
239
+ %% @babel/helper-create-class-features-plugin@7.29.7 NOTICES AND INFORMATION BEGIN HERE
240
+ =========================================
241
+ MIT License
242
+
243
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
244
+
245
+ Permission is hereby granted, free of charge, to any person obtaining
246
+ a copy of this software and associated documentation files (the
247
+ "Software"), to deal in the Software without restriction, including
248
+ without limitation the rights to use, copy, modify, merge, publish,
249
+ distribute, sublicense, and/or sell copies of the Software, and to
250
+ permit persons to whom the Software is furnished to do so, subject to
251
+ the following conditions:
252
+
253
+ The above copyright notice and this permission notice shall be
254
+ included in all copies or substantial portions of the Software.
255
+
256
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
257
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
258
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
259
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
260
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
261
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
262
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
263
+ =========================================
264
+ END OF @babel/helper-create-class-features-plugin@7.29.7 NOTICES AND INFORMATION
265
+
266
+ %% @babel/helper-globals@7.29.7 NOTICES AND INFORMATION BEGIN HERE
267
+ =========================================
268
+ MIT License
269
+
270
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
271
+
272
+ Permission is hereby granted, free of charge, to any person obtaining
273
+ a copy of this software and associated documentation files (the
274
+ "Software"), to deal in the Software without restriction, including
275
+ without limitation the rights to use, copy, modify, merge, publish,
276
+ distribute, sublicense, and/or sell copies of the Software, and to
277
+ permit persons to whom the Software is furnished to do so, subject to
278
+ the following conditions:
279
+
280
+ The above copyright notice and this permission notice shall be
281
+ included in all copies or substantial portions of the Software.
282
+
283
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
284
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
285
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
286
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
287
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
288
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
289
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
290
+ =========================================
291
+ END OF @babel/helper-globals@7.29.7 NOTICES AND INFORMATION
292
+
293
+ %% @babel/helper-member-expression-to-functions@7.29.7 NOTICES AND INFORMATION BEGIN HERE
294
+ =========================================
295
+ MIT License
296
+
297
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
298
+
299
+ Permission is hereby granted, free of charge, to any person obtaining
300
+ a copy of this software and associated documentation files (the
301
+ "Software"), to deal in the Software without restriction, including
302
+ without limitation the rights to use, copy, modify, merge, publish,
303
+ distribute, sublicense, and/or sell copies of the Software, and to
304
+ permit persons to whom the Software is furnished to do so, subject to
305
+ the following conditions:
306
+
307
+ The above copyright notice and this permission notice shall be
308
+ included in all copies or substantial portions of the Software.
309
+
310
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
311
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
312
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
313
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
314
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
315
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
316
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
317
+ =========================================
318
+ END OF @babel/helper-member-expression-to-functions@7.29.7 NOTICES AND INFORMATION
319
+
320
+ %% @babel/helper-module-imports@7.29.7 NOTICES AND INFORMATION BEGIN HERE
321
+ =========================================
322
+ MIT License
323
+
324
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
325
+
326
+ Permission is hereby granted, free of charge, to any person obtaining
327
+ a copy of this software and associated documentation files (the
328
+ "Software"), to deal in the Software without restriction, including
329
+ without limitation the rights to use, copy, modify, merge, publish,
330
+ distribute, sublicense, and/or sell copies of the Software, and to
331
+ permit persons to whom the Software is furnished to do so, subject to
332
+ the following conditions:
333
+
334
+ The above copyright notice and this permission notice shall be
335
+ included in all copies or substantial portions of the Software.
336
+
337
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
338
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
339
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
340
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
341
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
342
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
343
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
344
+ =========================================
345
+ END OF @babel/helper-module-imports@7.29.7 NOTICES AND INFORMATION
346
+
347
+ %% @babel/helper-module-transforms@7.29.7 NOTICES AND INFORMATION BEGIN HERE
348
+ =========================================
349
+ MIT License
350
+
351
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
352
+
353
+ Permission is hereby granted, free of charge, to any person obtaining
354
+ a copy of this software and associated documentation files (the
355
+ "Software"), to deal in the Software without restriction, including
356
+ without limitation the rights to use, copy, modify, merge, publish,
357
+ distribute, sublicense, and/or sell copies of the Software, and to
358
+ permit persons to whom the Software is furnished to do so, subject to
359
+ the following conditions:
360
+
361
+ The above copyright notice and this permission notice shall be
362
+ included in all copies or substantial portions of the Software.
363
+
364
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
365
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
366
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
367
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
368
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
369
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
370
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
371
+ =========================================
372
+ END OF @babel/helper-module-transforms@7.29.7 NOTICES AND INFORMATION
373
+
374
+ %% @babel/helper-optimise-call-expression@7.29.7 NOTICES AND INFORMATION BEGIN HERE
375
+ =========================================
376
+ MIT License
377
+
378
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
379
+
380
+ Permission is hereby granted, free of charge, to any person obtaining
381
+ a copy of this software and associated documentation files (the
382
+ "Software"), to deal in the Software without restriction, including
383
+ without limitation the rights to use, copy, modify, merge, publish,
384
+ distribute, sublicense, and/or sell copies of the Software, and to
385
+ permit persons to whom the Software is furnished to do so, subject to
386
+ the following conditions:
387
+
388
+ The above copyright notice and this permission notice shall be
389
+ included in all copies or substantial portions of the Software.
390
+
391
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
392
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
393
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
394
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
395
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
396
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
397
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
398
+ =========================================
399
+ END OF @babel/helper-optimise-call-expression@7.29.7 NOTICES AND INFORMATION
400
+
401
+ %% @babel/helper-plugin-utils@7.29.7 NOTICES AND INFORMATION BEGIN HERE
402
+ =========================================
403
+ MIT License
404
+
405
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
406
+
407
+ Permission is hereby granted, free of charge, to any person obtaining
408
+ a copy of this software and associated documentation files (the
409
+ "Software"), to deal in the Software without restriction, including
410
+ without limitation the rights to use, copy, modify, merge, publish,
411
+ distribute, sublicense, and/or sell copies of the Software, and to
412
+ permit persons to whom the Software is furnished to do so, subject to
413
+ the following conditions:
414
+
415
+ The above copyright notice and this permission notice shall be
416
+ included in all copies or substantial portions of the Software.
417
+
418
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
419
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
420
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
421
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
422
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
423
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
424
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
425
+ =========================================
426
+ END OF @babel/helper-plugin-utils@7.29.7 NOTICES AND INFORMATION
427
+
428
+ %% @babel/helper-replace-supers@7.29.7 NOTICES AND INFORMATION BEGIN HERE
429
+ =========================================
430
+ MIT License
431
+
432
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
433
+
434
+ Permission is hereby granted, free of charge, to any person obtaining
435
+ a copy of this software and associated documentation files (the
436
+ "Software"), to deal in the Software without restriction, including
437
+ without limitation the rights to use, copy, modify, merge, publish,
438
+ distribute, sublicense, and/or sell copies of the Software, and to
439
+ permit persons to whom the Software is furnished to do so, subject to
440
+ the following conditions:
441
+
442
+ The above copyright notice and this permission notice shall be
443
+ included in all copies or substantial portions of the Software.
444
+
445
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
446
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
447
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
448
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
449
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
450
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
451
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
452
+ =========================================
453
+ END OF @babel/helper-replace-supers@7.29.7 NOTICES AND INFORMATION
454
+
455
+ %% @babel/helper-skip-transparent-expression-wrappers@7.29.7 NOTICES AND INFORMATION BEGIN HERE
456
+ =========================================
457
+ MIT License
458
+
459
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
460
+
461
+ Permission is hereby granted, free of charge, to any person obtaining
462
+ a copy of this software and associated documentation files (the
463
+ "Software"), to deal in the Software without restriction, including
464
+ without limitation the rights to use, copy, modify, merge, publish,
465
+ distribute, sublicense, and/or sell copies of the Software, and to
466
+ permit persons to whom the Software is furnished to do so, subject to
467
+ the following conditions:
468
+
469
+ The above copyright notice and this permission notice shall be
470
+ included in all copies or substantial portions of the Software.
471
+
472
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
473
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
474
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
475
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
476
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
477
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
478
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
479
+ =========================================
480
+ END OF @babel/helper-skip-transparent-expression-wrappers@7.29.7 NOTICES AND INFORMATION
481
+
482
+ %% @babel/helper-string-parser@7.29.7 NOTICES AND INFORMATION BEGIN HERE
483
+ =========================================
484
+ MIT License
485
+
486
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
487
+
488
+ Permission is hereby granted, free of charge, to any person obtaining
489
+ a copy of this software and associated documentation files (the
490
+ "Software"), to deal in the Software without restriction, including
491
+ without limitation the rights to use, copy, modify, merge, publish,
492
+ distribute, sublicense, and/or sell copies of the Software, and to
493
+ permit persons to whom the Software is furnished to do so, subject to
494
+ the following conditions:
495
+
496
+ The above copyright notice and this permission notice shall be
497
+ included in all copies or substantial portions of the Software.
498
+
499
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
500
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
501
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
502
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
503
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
504
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
505
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
506
+ =========================================
507
+ END OF @babel/helper-string-parser@7.29.7 NOTICES AND INFORMATION
508
+
509
+ %% @babel/helper-validator-identifier@7.29.7 NOTICES AND INFORMATION BEGIN HERE
510
+ =========================================
511
+ MIT License
512
+
513
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
514
+
515
+ Permission is hereby granted, free of charge, to any person obtaining
516
+ a copy of this software and associated documentation files (the
517
+ "Software"), to deal in the Software without restriction, including
518
+ without limitation the rights to use, copy, modify, merge, publish,
519
+ distribute, sublicense, and/or sell copies of the Software, and to
520
+ permit persons to whom the Software is furnished to do so, subject to
521
+ the following conditions:
522
+
523
+ The above copyright notice and this permission notice shall be
524
+ included in all copies or substantial portions of the Software.
525
+
526
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
527
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
528
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
529
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
530
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
531
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
532
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
533
+ =========================================
534
+ END OF @babel/helper-validator-identifier@7.29.7 NOTICES AND INFORMATION
535
+
536
+ %% @babel/helper-validator-option@7.29.7 NOTICES AND INFORMATION BEGIN HERE
537
+ =========================================
538
+ MIT License
539
+
540
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
541
+
542
+ Permission is hereby granted, free of charge, to any person obtaining
543
+ a copy of this software and associated documentation files (the
544
+ "Software"), to deal in the Software without restriction, including
545
+ without limitation the rights to use, copy, modify, merge, publish,
546
+ distribute, sublicense, and/or sell copies of the Software, and to
547
+ permit persons to whom the Software is furnished to do so, subject to
548
+ the following conditions:
549
+
550
+ The above copyright notice and this permission notice shall be
551
+ included in all copies or substantial portions of the Software.
552
+
553
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
554
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
555
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
556
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
557
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
558
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
559
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
560
+ =========================================
561
+ END OF @babel/helper-validator-option@7.29.7 NOTICES AND INFORMATION
562
+
563
+ %% @babel/helpers@7.29.7 NOTICES AND INFORMATION BEGIN HERE
564
+ =========================================
565
+ MIT License
566
+
567
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
568
+ Copyright (c) 2014-present, Facebook, Inc. (ONLY ./src/helpers/regenerator* files)
569
+
570
+ Permission is hereby granted, free of charge, to any person obtaining
571
+ a copy of this software and associated documentation files (the
572
+ "Software"), to deal in the Software without restriction, including
573
+ without limitation the rights to use, copy, modify, merge, publish,
574
+ distribute, sublicense, and/or sell copies of the Software, and to
575
+ permit persons to whom the Software is furnished to do so, subject to
576
+ the following conditions:
577
+
578
+ The above copyright notice and this permission notice shall be
579
+ included in all copies or substantial portions of the Software.
580
+
581
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
582
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
583
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
584
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
585
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
586
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
587
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
588
+ =========================================
589
+ END OF @babel/helpers@7.29.7 NOTICES AND INFORMATION
590
+
591
+ %% @babel/parser@7.29.7 NOTICES AND INFORMATION BEGIN HERE
592
+ =========================================
593
+ Copyright (C) 2012-2014 by various contributors (see AUTHORS)
594
+
595
+ Permission is hereby granted, free of charge, to any person obtaining a copy
596
+ of this software and associated documentation files (the "Software"), to deal
597
+ in the Software without restriction, including without limitation the rights
598
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
599
+ copies of the Software, and to permit persons to whom the Software is
600
+ furnished to do so, subject to the following conditions:
601
+
602
+ The above copyright notice and this permission notice shall be included in
603
+ all copies or substantial portions of the Software.
604
+
605
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
606
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
607
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
608
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
609
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
610
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
611
+ THE SOFTWARE.
612
+ =========================================
613
+ END OF @babel/parser@7.29.7 NOTICES AND INFORMATION
614
+
615
+ %% @babel/plugin-proposal-decorators@7.29.7 NOTICES AND INFORMATION BEGIN HERE
616
+ =========================================
617
+ MIT License
618
+
619
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
620
+
621
+ Permission is hereby granted, free of charge, to any person obtaining
622
+ a copy of this software and associated documentation files (the
623
+ "Software"), to deal in the Software without restriction, including
624
+ without limitation the rights to use, copy, modify, merge, publish,
625
+ distribute, sublicense, and/or sell copies of the Software, and to
626
+ permit persons to whom the Software is furnished to do so, subject to
627
+ the following conditions:
628
+
629
+ The above copyright notice and this permission notice shall be
630
+ included in all copies or substantial portions of the Software.
631
+
632
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
633
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
634
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
635
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
636
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
637
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
638
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
639
+ =========================================
640
+ END OF @babel/plugin-proposal-decorators@7.29.7 NOTICES AND INFORMATION
641
+
642
+ %% @babel/plugin-syntax-async-generators@7.8.4 NOTICES AND INFORMATION BEGIN HERE
643
+ =========================================
644
+ MIT License
645
+
646
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
647
+
648
+ Permission is hereby granted, free of charge, to any person obtaining
649
+ a copy of this software and associated documentation files (the
650
+ "Software"), to deal in the Software without restriction, including
651
+ without limitation the rights to use, copy, modify, merge, publish,
652
+ distribute, sublicense, and/or sell copies of the Software, and to
653
+ permit persons to whom the Software is furnished to do so, subject to
654
+ the following conditions:
655
+
656
+ The above copyright notice and this permission notice shall be
657
+ included in all copies or substantial portions of the Software.
658
+
659
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
660
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
661
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
662
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
663
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
664
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
665
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
666
+ =========================================
667
+ END OF @babel/plugin-syntax-async-generators@7.8.4 NOTICES AND INFORMATION
668
+
669
+ %% @babel/plugin-syntax-decorators@7.29.7 NOTICES AND INFORMATION BEGIN HERE
670
+ =========================================
671
+ MIT License
672
+
673
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
674
+
675
+ Permission is hereby granted, free of charge, to any person obtaining
676
+ a copy of this software and associated documentation files (the
677
+ "Software"), to deal in the Software without restriction, including
678
+ without limitation the rights to use, copy, modify, merge, publish,
679
+ distribute, sublicense, and/or sell copies of the Software, and to
680
+ permit persons to whom the Software is furnished to do so, subject to
681
+ the following conditions:
682
+
683
+ The above copyright notice and this permission notice shall be
684
+ included in all copies or substantial portions of the Software.
685
+
686
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
687
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
688
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
689
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
690
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
691
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
692
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
693
+ =========================================
694
+ END OF @babel/plugin-syntax-decorators@7.29.7 NOTICES AND INFORMATION
695
+
696
+ %% @babel/plugin-syntax-import-attributes@7.29.7 NOTICES AND INFORMATION BEGIN HERE
697
+ =========================================
698
+ MIT License
699
+
700
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
701
+
702
+ Permission is hereby granted, free of charge, to any person obtaining
703
+ a copy of this software and associated documentation files (the
704
+ "Software"), to deal in the Software without restriction, including
705
+ without limitation the rights to use, copy, modify, merge, publish,
706
+ distribute, sublicense, and/or sell copies of the Software, and to
707
+ permit persons to whom the Software is furnished to do so, subject to
708
+ the following conditions:
709
+
710
+ The above copyright notice and this permission notice shall be
711
+ included in all copies or substantial portions of the Software.
712
+
713
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
714
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
715
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
716
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
717
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
718
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
719
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
720
+ =========================================
721
+ END OF @babel/plugin-syntax-import-attributes@7.29.7 NOTICES AND INFORMATION
722
+
723
+ %% @babel/plugin-syntax-json-strings@7.8.3 NOTICES AND INFORMATION BEGIN HERE
724
+ =========================================
725
+ MIT License
726
+
727
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
728
+
729
+ Permission is hereby granted, free of charge, to any person obtaining
730
+ a copy of this software and associated documentation files (the
731
+ "Software"), to deal in the Software without restriction, including
732
+ without limitation the rights to use, copy, modify, merge, publish,
733
+ distribute, sublicense, and/or sell copies of the Software, and to
734
+ permit persons to whom the Software is furnished to do so, subject to
735
+ the following conditions:
736
+
737
+ The above copyright notice and this permission notice shall be
738
+ included in all copies or substantial portions of the Software.
739
+
740
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
741
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
742
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
743
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
744
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
745
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
746
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
747
+ =========================================
748
+ END OF @babel/plugin-syntax-json-strings@7.8.3 NOTICES AND INFORMATION
749
+
750
+ %% @babel/plugin-syntax-jsx@7.29.7 NOTICES AND INFORMATION BEGIN HERE
751
+ =========================================
752
+ MIT License
753
+
754
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
755
+
756
+ Permission is hereby granted, free of charge, to any person obtaining
757
+ a copy of this software and associated documentation files (the
758
+ "Software"), to deal in the Software without restriction, including
759
+ without limitation the rights to use, copy, modify, merge, publish,
760
+ distribute, sublicense, and/or sell copies of the Software, and to
761
+ permit persons to whom the Software is furnished to do so, subject to
762
+ the following conditions:
763
+
764
+ The above copyright notice and this permission notice shall be
765
+ included in all copies or substantial portions of the Software.
766
+
767
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
768
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
769
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
770
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
771
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
772
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
773
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
774
+ =========================================
775
+ END OF @babel/plugin-syntax-jsx@7.29.7 NOTICES AND INFORMATION
776
+
777
+ %% @babel/plugin-syntax-object-rest-spread@7.8.3 NOTICES AND INFORMATION BEGIN HERE
778
+ =========================================
779
+ MIT License
780
+
781
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
782
+
783
+ Permission is hereby granted, free of charge, to any person obtaining
784
+ a copy of this software and associated documentation files (the
785
+ "Software"), to deal in the Software without restriction, including
786
+ without limitation the rights to use, copy, modify, merge, publish,
787
+ distribute, sublicense, and/or sell copies of the Software, and to
788
+ permit persons to whom the Software is furnished to do so, subject to
789
+ the following conditions:
790
+
791
+ The above copyright notice and this permission notice shall be
792
+ included in all copies or substantial portions of the Software.
793
+
794
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
795
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
796
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
797
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
798
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
799
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
800
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
801
+ =========================================
802
+ END OF @babel/plugin-syntax-object-rest-spread@7.8.3 NOTICES AND INFORMATION
803
+
804
+ %% @babel/plugin-syntax-optional-catch-binding@7.8.3 NOTICES AND INFORMATION BEGIN HERE
805
+ =========================================
806
+ MIT License
807
+
808
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
809
+
810
+ Permission is hereby granted, free of charge, to any person obtaining
811
+ a copy of this software and associated documentation files (the
812
+ "Software"), to deal in the Software without restriction, including
813
+ without limitation the rights to use, copy, modify, merge, publish,
814
+ distribute, sublicense, and/or sell copies of the Software, and to
815
+ permit persons to whom the Software is furnished to do so, subject to
816
+ the following conditions:
817
+
818
+ The above copyright notice and this permission notice shall be
819
+ included in all copies or substantial portions of the Software.
820
+
821
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
822
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
823
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
824
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
825
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
826
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
827
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
828
+ =========================================
829
+ END OF @babel/plugin-syntax-optional-catch-binding@7.8.3 NOTICES AND INFORMATION
830
+
831
+ %% @babel/plugin-syntax-typescript@7.29.7 NOTICES AND INFORMATION BEGIN HERE
832
+ =========================================
833
+ MIT License
834
+
835
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
836
+
837
+ Permission is hereby granted, free of charge, to any person obtaining
838
+ a copy of this software and associated documentation files (the
839
+ "Software"), to deal in the Software without restriction, including
840
+ without limitation the rights to use, copy, modify, merge, publish,
841
+ distribute, sublicense, and/or sell copies of the Software, and to
842
+ permit persons to whom the Software is furnished to do so, subject to
843
+ the following conditions:
844
+
845
+ The above copyright notice and this permission notice shall be
846
+ included in all copies or substantial portions of the Software.
847
+
848
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
849
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
850
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
851
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
852
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
853
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
854
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
855
+ =========================================
856
+ END OF @babel/plugin-syntax-typescript@7.29.7 NOTICES AND INFORMATION
857
+
858
+ %% @babel/plugin-transform-class-properties@7.29.7 NOTICES AND INFORMATION BEGIN HERE
859
+ =========================================
860
+ MIT License
861
+
862
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
863
+
864
+ Permission is hereby granted, free of charge, to any person obtaining
865
+ a copy of this software and associated documentation files (the
866
+ "Software"), to deal in the Software without restriction, including
867
+ without limitation the rights to use, copy, modify, merge, publish,
868
+ distribute, sublicense, and/or sell copies of the Software, and to
869
+ permit persons to whom the Software is furnished to do so, subject to
870
+ the following conditions:
871
+
872
+ The above copyright notice and this permission notice shall be
873
+ included in all copies or substantial portions of the Software.
874
+
875
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
876
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
877
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
878
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
879
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
880
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
881
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
882
+ =========================================
883
+ END OF @babel/plugin-transform-class-properties@7.29.7 NOTICES AND INFORMATION
884
+
885
+ %% @babel/plugin-transform-class-static-block@7.29.7 NOTICES AND INFORMATION BEGIN HERE
886
+ =========================================
887
+ MIT License
888
+
889
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
890
+
891
+ Permission is hereby granted, free of charge, to any person obtaining
892
+ a copy of this software and associated documentation files (the
893
+ "Software"), to deal in the Software without restriction, including
894
+ without limitation the rights to use, copy, modify, merge, publish,
895
+ distribute, sublicense, and/or sell copies of the Software, and to
896
+ permit persons to whom the Software is furnished to do so, subject to
897
+ the following conditions:
898
+
899
+ The above copyright notice and this permission notice shall be
900
+ included in all copies or substantial portions of the Software.
901
+
902
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
903
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
904
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
905
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
906
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
907
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
908
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
909
+ =========================================
910
+ END OF @babel/plugin-transform-class-static-block@7.29.7 NOTICES AND INFORMATION
911
+
912
+ %% @babel/plugin-transform-destructuring@7.29.7 NOTICES AND INFORMATION BEGIN HERE
913
+ =========================================
914
+ MIT License
915
+
916
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
917
+
918
+ Permission is hereby granted, free of charge, to any person obtaining
919
+ a copy of this software and associated documentation files (the
920
+ "Software"), to deal in the Software without restriction, including
921
+ without limitation the rights to use, copy, modify, merge, publish,
922
+ distribute, sublicense, and/or sell copies of the Software, and to
923
+ permit persons to whom the Software is furnished to do so, subject to
924
+ the following conditions:
925
+
926
+ The above copyright notice and this permission notice shall be
927
+ included in all copies or substantial portions of the Software.
928
+
929
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
930
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
931
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
932
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
933
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
934
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
935
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
936
+ =========================================
937
+ END OF @babel/plugin-transform-destructuring@7.29.7 NOTICES AND INFORMATION
938
+
939
+ %% @babel/plugin-transform-explicit-resource-management@7.29.7 NOTICES AND INFORMATION BEGIN HERE
940
+ =========================================
941
+ MIT License
942
+
943
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
944
+
945
+ Permission is hereby granted, free of charge, to any person obtaining
946
+ a copy of this software and associated documentation files (the
947
+ "Software"), to deal in the Software without restriction, including
948
+ without limitation the rights to use, copy, modify, merge, publish,
949
+ distribute, sublicense, and/or sell copies of the Software, and to
950
+ permit persons to whom the Software is furnished to do so, subject to
951
+ the following conditions:
952
+
953
+ The above copyright notice and this permission notice shall be
954
+ included in all copies or substantial portions of the Software.
955
+
956
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
957
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
958
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
959
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
960
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
961
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
962
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
963
+ =========================================
964
+ END OF @babel/plugin-transform-explicit-resource-management@7.29.7 NOTICES AND INFORMATION
965
+
966
+ %% @babel/plugin-transform-export-namespace-from@7.29.7 NOTICES AND INFORMATION BEGIN HERE
967
+ =========================================
968
+ MIT License
969
+
970
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
971
+
972
+ Permission is hereby granted, free of charge, to any person obtaining
973
+ a copy of this software and associated documentation files (the
974
+ "Software"), to deal in the Software without restriction, including
975
+ without limitation the rights to use, copy, modify, merge, publish,
976
+ distribute, sublicense, and/or sell copies of the Software, and to
977
+ permit persons to whom the Software is furnished to do so, subject to
978
+ the following conditions:
979
+
980
+ The above copyright notice and this permission notice shall be
981
+ included in all copies or substantial portions of the Software.
982
+
983
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
984
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
985
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
986
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
987
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
988
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
989
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
990
+ =========================================
991
+ END OF @babel/plugin-transform-export-namespace-from@7.29.7 NOTICES AND INFORMATION
992
+
993
+ %% @babel/plugin-transform-logical-assignment-operators@7.29.7 NOTICES AND INFORMATION BEGIN HERE
994
+ =========================================
995
+ MIT License
996
+
997
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
998
+
999
+ Permission is hereby granted, free of charge, to any person obtaining
1000
+ a copy of this software and associated documentation files (the
1001
+ "Software"), to deal in the Software without restriction, including
1002
+ without limitation the rights to use, copy, modify, merge, publish,
1003
+ distribute, sublicense, and/or sell copies of the Software, and to
1004
+ permit persons to whom the Software is furnished to do so, subject to
1005
+ the following conditions:
1006
+
1007
+ The above copyright notice and this permission notice shall be
1008
+ included in all copies or substantial portions of the Software.
1009
+
1010
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1011
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1012
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1013
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
1014
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
1015
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
1016
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1017
+ =========================================
1018
+ END OF @babel/plugin-transform-logical-assignment-operators@7.29.7 NOTICES AND INFORMATION
1019
+
1020
+ %% @babel/plugin-transform-modules-commonjs@7.29.7 NOTICES AND INFORMATION BEGIN HERE
1021
+ =========================================
1022
+ MIT License
1023
+
1024
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
1025
+
1026
+ Permission is hereby granted, free of charge, to any person obtaining
1027
+ a copy of this software and associated documentation files (the
1028
+ "Software"), to deal in the Software without restriction, including
1029
+ without limitation the rights to use, copy, modify, merge, publish,
1030
+ distribute, sublicense, and/or sell copies of the Software, and to
1031
+ permit persons to whom the Software is furnished to do so, subject to
1032
+ the following conditions:
1033
+
1034
+ The above copyright notice and this permission notice shall be
1035
+ included in all copies or substantial portions of the Software.
1036
+
1037
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1038
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1039
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1040
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
1041
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
1042
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
1043
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1044
+ =========================================
1045
+ END OF @babel/plugin-transform-modules-commonjs@7.29.7 NOTICES AND INFORMATION
1046
+
1047
+ %% @babel/plugin-transform-nullish-coalescing-operator@7.29.7 NOTICES AND INFORMATION BEGIN HERE
1048
+ =========================================
1049
+ MIT License
1050
+
1051
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
1052
+
1053
+ Permission is hereby granted, free of charge, to any person obtaining
1054
+ a copy of this software and associated documentation files (the
1055
+ "Software"), to deal in the Software without restriction, including
1056
+ without limitation the rights to use, copy, modify, merge, publish,
1057
+ distribute, sublicense, and/or sell copies of the Software, and to
1058
+ permit persons to whom the Software is furnished to do so, subject to
1059
+ the following conditions:
1060
+
1061
+ The above copyright notice and this permission notice shall be
1062
+ included in all copies or substantial portions of the Software.
1063
+
1064
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1065
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1066
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1067
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
1068
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
1069
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
1070
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1071
+ =========================================
1072
+ END OF @babel/plugin-transform-nullish-coalescing-operator@7.29.7 NOTICES AND INFORMATION
1073
+
1074
+ %% @babel/plugin-transform-numeric-separator@7.29.7 NOTICES AND INFORMATION BEGIN HERE
1075
+ =========================================
1076
+ MIT License
1077
+
1078
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
1079
+
1080
+ Permission is hereby granted, free of charge, to any person obtaining
1081
+ a copy of this software and associated documentation files (the
1082
+ "Software"), to deal in the Software without restriction, including
1083
+ without limitation the rights to use, copy, modify, merge, publish,
1084
+ distribute, sublicense, and/or sell copies of the Software, and to
1085
+ permit persons to whom the Software is furnished to do so, subject to
1086
+ the following conditions:
1087
+
1088
+ The above copyright notice and this permission notice shall be
1089
+ included in all copies or substantial portions of the Software.
1090
+
1091
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1092
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1093
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1094
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
1095
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
1096
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
1097
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1098
+ =========================================
1099
+ END OF @babel/plugin-transform-numeric-separator@7.29.7 NOTICES AND INFORMATION
1100
+
1101
+ %% @babel/plugin-transform-optional-chaining@7.29.7 NOTICES AND INFORMATION BEGIN HERE
1102
+ =========================================
1103
+ MIT License
1104
+
1105
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
1106
+
1107
+ Permission is hereby granted, free of charge, to any person obtaining
1108
+ a copy of this software and associated documentation files (the
1109
+ "Software"), to deal in the Software without restriction, including
1110
+ without limitation the rights to use, copy, modify, merge, publish,
1111
+ distribute, sublicense, and/or sell copies of the Software, and to
1112
+ permit persons to whom the Software is furnished to do so, subject to
1113
+ the following conditions:
1114
+
1115
+ The above copyright notice and this permission notice shall be
1116
+ included in all copies or substantial portions of the Software.
1117
+
1118
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1119
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1120
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1121
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
1122
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
1123
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
1124
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1125
+ =========================================
1126
+ END OF @babel/plugin-transform-optional-chaining@7.29.7 NOTICES AND INFORMATION
1127
+
1128
+ %% @babel/plugin-transform-private-methods@7.29.7 NOTICES AND INFORMATION BEGIN HERE
1129
+ =========================================
1130
+ MIT License
1131
+
1132
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
1133
+
1134
+ Permission is hereby granted, free of charge, to any person obtaining
1135
+ a copy of this software and associated documentation files (the
1136
+ "Software"), to deal in the Software without restriction, including
1137
+ without limitation the rights to use, copy, modify, merge, publish,
1138
+ distribute, sublicense, and/or sell copies of the Software, and to
1139
+ permit persons to whom the Software is furnished to do so, subject to
1140
+ the following conditions:
1141
+
1142
+ The above copyright notice and this permission notice shall be
1143
+ included in all copies or substantial portions of the Software.
1144
+
1145
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1146
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1147
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1148
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
1149
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
1150
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
1151
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1152
+ =========================================
1153
+ END OF @babel/plugin-transform-private-methods@7.29.7 NOTICES AND INFORMATION
1154
+
1155
+ %% @babel/plugin-transform-react-jsx@7.29.7 NOTICES AND INFORMATION BEGIN HERE
1156
+ =========================================
1157
+ MIT License
1158
+
1159
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
1160
+
1161
+ Permission is hereby granted, free of charge, to any person obtaining
1162
+ a copy of this software and associated documentation files (the
1163
+ "Software"), to deal in the Software without restriction, including
1164
+ without limitation the rights to use, copy, modify, merge, publish,
1165
+ distribute, sublicense, and/or sell copies of the Software, and to
1166
+ permit persons to whom the Software is furnished to do so, subject to
1167
+ the following conditions:
1168
+
1169
+ The above copyright notice and this permission notice shall be
1170
+ included in all copies or substantial portions of the Software.
1171
+
1172
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1173
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1174
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1175
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
1176
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
1177
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
1178
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1179
+ =========================================
1180
+ END OF @babel/plugin-transform-react-jsx@7.29.7 NOTICES AND INFORMATION
1181
+
1182
+ %% @babel/plugin-transform-typescript@7.29.7 NOTICES AND INFORMATION BEGIN HERE
1183
+ =========================================
1184
+ MIT License
1185
+
1186
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
1187
+
1188
+ Permission is hereby granted, free of charge, to any person obtaining
1189
+ a copy of this software and associated documentation files (the
1190
+ "Software"), to deal in the Software without restriction, including
1191
+ without limitation the rights to use, copy, modify, merge, publish,
1192
+ distribute, sublicense, and/or sell copies of the Software, and to
1193
+ permit persons to whom the Software is furnished to do so, subject to
1194
+ the following conditions:
1195
+
1196
+ The above copyright notice and this permission notice shall be
1197
+ included in all copies or substantial portions of the Software.
1198
+
1199
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1200
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1201
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1202
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
1203
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
1204
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
1205
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1206
+ =========================================
1207
+ END OF @babel/plugin-transform-typescript@7.29.7 NOTICES AND INFORMATION
1208
+
1209
+ %% @babel/preset-typescript@7.29.7 NOTICES AND INFORMATION BEGIN HERE
1210
+ =========================================
1211
+ MIT License
1212
+
1213
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
1214
+
1215
+ Permission is hereby granted, free of charge, to any person obtaining
1216
+ a copy of this software and associated documentation files (the
1217
+ "Software"), to deal in the Software without restriction, including
1218
+ without limitation the rights to use, copy, modify, merge, publish,
1219
+ distribute, sublicense, and/or sell copies of the Software, and to
1220
+ permit persons to whom the Software is furnished to do so, subject to
1221
+ the following conditions:
1222
+
1223
+ The above copyright notice and this permission notice shall be
1224
+ included in all copies or substantial portions of the Software.
1225
+
1226
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1227
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1228
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1229
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
1230
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
1231
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
1232
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1233
+ =========================================
1234
+ END OF @babel/preset-typescript@7.29.7 NOTICES AND INFORMATION
1235
+
1236
+ %% @babel/template@7.29.7 NOTICES AND INFORMATION BEGIN HERE
1237
+ =========================================
1238
+ MIT License
1239
+
1240
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
1241
+
1242
+ Permission is hereby granted, free of charge, to any person obtaining
1243
+ a copy of this software and associated documentation files (the
1244
+ "Software"), to deal in the Software without restriction, including
1245
+ without limitation the rights to use, copy, modify, merge, publish,
1246
+ distribute, sublicense, and/or sell copies of the Software, and to
1247
+ permit persons to whom the Software is furnished to do so, subject to
1248
+ the following conditions:
1249
+
1250
+ The above copyright notice and this permission notice shall be
1251
+ included in all copies or substantial portions of the Software.
1252
+
1253
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1254
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1255
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1256
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
1257
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
1258
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
1259
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1260
+ =========================================
1261
+ END OF @babel/template@7.29.7 NOTICES AND INFORMATION
1262
+
1263
+ %% @babel/traverse@7.29.7 NOTICES AND INFORMATION BEGIN HERE
1264
+ =========================================
1265
+ MIT License
1266
+
1267
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
1268
+
1269
+ Permission is hereby granted, free of charge, to any person obtaining
1270
+ a copy of this software and associated documentation files (the
1271
+ "Software"), to deal in the Software without restriction, including
1272
+ without limitation the rights to use, copy, modify, merge, publish,
1273
+ distribute, sublicense, and/or sell copies of the Software, and to
1274
+ permit persons to whom the Software is furnished to do so, subject to
1275
+ the following conditions:
1276
+
1277
+ The above copyright notice and this permission notice shall be
1278
+ included in all copies or substantial portions of the Software.
1279
+
1280
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1281
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1282
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1283
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
1284
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
1285
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
1286
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1287
+ =========================================
1288
+ END OF @babel/traverse@7.29.7 NOTICES AND INFORMATION
1289
+
1290
+ %% @babel/types@7.29.7 NOTICES AND INFORMATION BEGIN HERE
1291
+ =========================================
1292
+ MIT License
1293
+
1294
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
1295
+
1296
+ Permission is hereby granted, free of charge, to any person obtaining
1297
+ a copy of this software and associated documentation files (the
1298
+ "Software"), to deal in the Software without restriction, including
1299
+ without limitation the rights to use, copy, modify, merge, publish,
1300
+ distribute, sublicense, and/or sell copies of the Software, and to
1301
+ permit persons to whom the Software is furnished to do so, subject to
1302
+ the following conditions:
1303
+
1304
+ The above copyright notice and this permission notice shall be
1305
+ included in all copies or substantial portions of the Software.
1306
+
1307
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1308
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1309
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1310
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
1311
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
1312
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
1313
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1314
+ =========================================
1315
+ END OF @babel/types@7.29.7 NOTICES AND INFORMATION
1316
+
1317
+ %% @jridgewell/gen-mapping@0.3.13 NOTICES AND INFORMATION BEGIN HERE
1318
+ =========================================
1319
+ Copyright 2024 Justin Ridgewell <justin@ridgewell.name>
1320
+
1321
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1322
+ of this software and associated documentation files (the "Software"), to deal
1323
+ in the Software without restriction, including without limitation the rights
1324
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1325
+ copies of the Software, and to permit persons to whom the Software is
1326
+ furnished to do so, subject to the following conditions:
1327
+
1328
+ The above copyright notice and this permission notice shall be included in
1329
+ all copies or substantial portions of the Software.
1330
+
1331
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1332
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1333
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1334
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1335
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1336
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1337
+ SOFTWARE.
1338
+ =========================================
1339
+ END OF @jridgewell/gen-mapping@0.3.13 NOTICES AND INFORMATION
1340
+
1341
+ %% @jridgewell/remapping@2.3.5 NOTICES AND INFORMATION BEGIN HERE
1342
+ =========================================
1343
+ Copyright 2024 Justin Ridgewell <justin@ridgewell.name>
1344
+
1345
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1346
+ of this software and associated documentation files (the "Software"), to deal
1347
+ in the Software without restriction, including without limitation the rights
1348
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1349
+ copies of the Software, and to permit persons to whom the Software is
1350
+ furnished to do so, subject to the following conditions:
1351
+
1352
+ The above copyright notice and this permission notice shall be included in
1353
+ all copies or substantial portions of the Software.
1354
+
1355
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1356
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1357
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1358
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1359
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1360
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1361
+ SOFTWARE.
1362
+ =========================================
1363
+ END OF @jridgewell/remapping@2.3.5 NOTICES AND INFORMATION
1364
+
1365
+ %% @jridgewell/resolve-uri@3.1.2 NOTICES AND INFORMATION BEGIN HERE
1366
+ =========================================
1367
+ Copyright 2019 Justin Ridgewell <jridgewell@google.com>
1368
+
1369
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1370
+ of this software and associated documentation files (the "Software"), to deal
1371
+ in the Software without restriction, including without limitation the rights
1372
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1373
+ copies of the Software, and to permit persons to whom the Software is
1374
+ furnished to do so, subject to the following conditions:
1375
+
1376
+ The above copyright notice and this permission notice shall be included in
1377
+ all copies or substantial portions of the Software.
1378
+
1379
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1380
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1381
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1382
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1383
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1384
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1385
+ SOFTWARE.
1386
+ =========================================
1387
+ END OF @jridgewell/resolve-uri@3.1.2 NOTICES AND INFORMATION
1388
+
1389
+ %% @jridgewell/sourcemap-codec@1.5.5 NOTICES AND INFORMATION BEGIN HERE
1390
+ =========================================
1391
+ Copyright 2024 Justin Ridgewell <justin@ridgewell.name>
1392
+
1393
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1394
+ of this software and associated documentation files (the "Software"), to deal
1395
+ in the Software without restriction, including without limitation the rights
1396
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1397
+ copies of the Software, and to permit persons to whom the Software is
1398
+ furnished to do so, subject to the following conditions:
1399
+
1400
+ The above copyright notice and this permission notice shall be included in
1401
+ all copies or substantial portions of the Software.
1402
+
1403
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1404
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1405
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1406
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1407
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1408
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1409
+ SOFTWARE.
1410
+ =========================================
1411
+ END OF @jridgewell/sourcemap-codec@1.5.5 NOTICES AND INFORMATION
1412
+
1413
+ %% @jridgewell/trace-mapping@0.3.31 NOTICES AND INFORMATION BEGIN HERE
1414
+ =========================================
1415
+ Copyright 2024 Justin Ridgewell <justin@ridgewell.name>
1416
+
1417
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1418
+ of this software and associated documentation files (the "Software"), to deal
1419
+ in the Software without restriction, including without limitation the rights
1420
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1421
+ copies of the Software, and to permit persons to whom the Software is
1422
+ furnished to do so, subject to the following conditions:
1423
+
1424
+ The above copyright notice and this permission notice shall be included in
1425
+ all copies or substantial portions of the Software.
1426
+
1427
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1428
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1429
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1430
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1431
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1432
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1433
+ SOFTWARE.
1434
+ =========================================
1435
+ END OF @jridgewell/trace-mapping@0.3.31 NOTICES AND INFORMATION
1436
+
1437
+ %% baseline-browser-mapping@2.10.40 NOTICES AND INFORMATION BEGIN HERE
1438
+ =========================================
1439
+ Apache License
1440
+ Version 2.0, January 2004
1441
+ http://www.apache.org/licenses/
1442
+
1443
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1444
+
1445
+ 1. Definitions.
1446
+
1447
+ "License" shall mean the terms and conditions for use, reproduction,
1448
+ and distribution as defined by Sections 1 through 9 of this document.
1449
+
1450
+ "Licensor" shall mean the copyright owner or entity authorized by
1451
+ the copyright owner that is granting the License.
1452
+
1453
+ "Legal Entity" shall mean the union of the acting entity and all
1454
+ other entities that control, are controlled by, or are under common
1455
+ control with that entity. For the purposes of this definition,
1456
+ "control" means (i) the power, direct or indirect, to cause the
1457
+ direction or management of such entity, whether by contract or
1458
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
1459
+ outstanding shares, or (iii) beneficial ownership of such entity.
1460
+
1461
+ "You" (or "Your") shall mean an individual or Legal Entity
1462
+ exercising permissions granted by this License.
1463
+
1464
+ "Source" form shall mean the preferred form for making modifications,
1465
+ including but not limited to software source code, documentation
1466
+ source, and configuration files.
1467
+
1468
+ "Object" form shall mean any form resulting from mechanical
1469
+ transformation or translation of a Source form, including but
1470
+ not limited to compiled object code, generated documentation,
1471
+ and conversions to other media types.
1472
+
1473
+ "Work" shall mean the work of authorship, whether in Source or
1474
+ Object form, made available under the License, as indicated by a
1475
+ copyright notice that is included in or attached to the work
1476
+ (an example is provided in the Appendix below).
1477
+
1478
+ "Derivative Works" shall mean any work, whether in Source or Object
1479
+ form, that is based on (or derived from) the Work and for which the
1480
+ editorial revisions, annotations, elaborations, or other modifications
1481
+ represent, as a whole, an original work of authorship. For the purposes
1482
+ of this License, Derivative Works shall not include works that remain
1483
+ separable from, or merely link (or bind by name) to the interfaces of,
1484
+ the Work and Derivative Works thereof.
1485
+
1486
+ "Contribution" shall mean any work of authorship, including
1487
+ the original version of the Work and any modifications or additions
1488
+ to that Work or Derivative Works thereof, that is intentionally
1489
+ submitted to Licensor for inclusion in the Work by the copyright owner
1490
+ or by an individual or Legal Entity authorized to submit on behalf of
1491
+ the copyright owner. For the purposes of this definition, "submitted"
1492
+ means any form of electronic, verbal, or written communication sent
1493
+ to the Licensor or its representatives, including but not limited to
1494
+ communication on electronic mailing lists, source code control systems,
1495
+ and issue tracking systems that are managed by, or on behalf of, the
1496
+ Licensor for the purpose of discussing and improving the Work, but
1497
+ excluding communication that is conspicuously marked or otherwise
1498
+ designated in writing by the copyright owner as "Not a Contribution."
1499
+
1500
+ "Contributor" shall mean Licensor and any individual or Legal Entity
1501
+ on behalf of whom a Contribution has been received by Licensor and
1502
+ subsequently incorporated within the Work.
1503
+
1504
+ 2. Grant of Copyright License. Subject to the terms and conditions of
1505
+ this License, each Contributor hereby grants to You a perpetual,
1506
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
1507
+ copyright license to reproduce, prepare Derivative Works of,
1508
+ publicly display, publicly perform, sublicense, and distribute the
1509
+ Work and such Derivative Works in Source or Object form.
1510
+
1511
+ 3. Grant of Patent License. Subject to the terms and conditions of
1512
+ this License, each Contributor hereby grants to You a perpetual,
1513
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
1514
+ (except as stated in this section) patent license to make, have made,
1515
+ use, offer to sell, sell, import, and otherwise transfer the Work,
1516
+ where such license applies only to those patent claims licensable
1517
+ by such Contributor that are necessarily infringed by their
1518
+ Contribution(s) alone or by combination of their Contribution(s)
1519
+ with the Work to which such Contribution(s) was submitted. If You
1520
+ institute patent litigation against any entity (including a
1521
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
1522
+ or a Contribution incorporated within the Work constitutes direct
1523
+ or contributory patent infringement, then any patent licenses
1524
+ granted to You under this License for that Work shall terminate
1525
+ as of the date such litigation is filed.
1526
+
1527
+ 4. Redistribution. You may reproduce and distribute copies of the
1528
+ Work or Derivative Works thereof in any medium, with or without
1529
+ modifications, and in Source or Object form, provided that You
1530
+ meet the following conditions:
1531
+
1532
+ (a) You must give any other recipients of the Work or
1533
+ Derivative Works a copy of this License; and
1534
+
1535
+ (b) You must cause any modified files to carry prominent notices
1536
+ stating that You changed the files; and
1537
+
1538
+ (c) You must retain, in the Source form of any Derivative Works
1539
+ that You distribute, all copyright, patent, trademark, and
1540
+ attribution notices from the Source form of the Work,
1541
+ excluding those notices that do not pertain to any part of
1542
+ the Derivative Works; and
1543
+
1544
+ (d) If the Work includes a "NOTICE" text file as part of its
1545
+ distribution, then any Derivative Works that You distribute must
1546
+ include a readable copy of the attribution notices contained
1547
+ within such NOTICE file, excluding those notices that do not
1548
+ pertain to any part of the Derivative Works, in at least one
1549
+ of the following places: within a NOTICE text file distributed
1550
+ as part of the Derivative Works; within the Source form or
1551
+ documentation, if provided along with the Derivative Works; or,
1552
+ within a display generated by the Derivative Works, if and
1553
+ wherever such third-party notices normally appear. The contents
1554
+ of the NOTICE file are for informational purposes only and
1555
+ do not modify the License. You may add Your own attribution
1556
+ notices within Derivative Works that You distribute, alongside
1557
+ or as an addendum to the NOTICE text from the Work, provided
1558
+ that such additional attribution notices cannot be construed
1559
+ as modifying the License.
1560
+
1561
+ You may add Your own copyright statement to Your modifications and
1562
+ may provide additional or different license terms and conditions
1563
+ for use, reproduction, or distribution of Your modifications, or
1564
+ for any such Derivative Works as a whole, provided Your use,
1565
+ reproduction, and distribution of the Work otherwise complies with
1566
+ the conditions stated in this License.
1567
+
1568
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
1569
+ any Contribution intentionally submitted for inclusion in the Work
1570
+ by You to the Licensor shall be under the terms and conditions of
1571
+ this License, without any additional terms or conditions.
1572
+ Notwithstanding the above, nothing herein shall supersede or modify
1573
+ the terms of any separate license agreement you may have executed
1574
+ with Licensor regarding such Contributions.
1575
+
1576
+ 6. Trademarks. This License does not grant permission to use the trade
1577
+ names, trademarks, service marks, or product names of the Licensor,
1578
+ except as required for reasonable and customary use in describing the
1579
+ origin of the Work and reproducing the content of the NOTICE file.
1580
+
1581
+ 7. Disclaimer of Warranty. Unless required by applicable law or
1582
+ agreed to in writing, Licensor provides the Work (and each
1583
+ Contributor provides its Contributions) on an "AS IS" BASIS,
1584
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
1585
+ implied, including, without limitation, any warranties or conditions
1586
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
1587
+ PARTICULAR PURPOSE. You are solely responsible for determining the
1588
+ appropriateness of using or redistributing the Work and assume any
1589
+ risks associated with Your exercise of permissions under this License.
1590
+
1591
+ 8. Limitation of Liability. In no event and under no legal theory,
1592
+ whether in tort (including negligence), contract, or otherwise,
1593
+ unless required by applicable law (such as deliberate and grossly
1594
+ negligent acts) or agreed to in writing, shall any Contributor be
1595
+ liable to You for damages, including any direct, indirect, special,
1596
+ incidental, or consequential damages of any character arising as a
1597
+ result of this License or out of the use or inability to use the
1598
+ Work (including but not limited to damages for loss of goodwill,
1599
+ work stoppage, computer failure or malfunction, or any and all
1600
+ other commercial damages or losses), even if such Contributor
1601
+ has been advised of the possibility of such damages.
1602
+
1603
+ 9. Accepting Warranty or Additional Liability. While redistributing
1604
+ the Work or Derivative Works thereof, You may choose to offer,
1605
+ and charge a fee for, acceptance of support, warranty, indemnity,
1606
+ or other liability obligations and/or rights consistent with this
1607
+ License. However, in accepting such obligations, You may act only
1608
+ on Your own behalf and on Your sole responsibility, not on behalf
1609
+ of any other Contributor, and only if You agree to indemnify,
1610
+ defend, and hold each Contributor harmless for any liability
1611
+ incurred by, or claims asserted against, such Contributor by reason
1612
+ of your accepting any such warranty or additional liability.
1613
+
1614
+ END OF TERMS AND CONDITIONS
1615
+
1616
+ APPENDIX: How to apply the Apache License to your work.
1617
+
1618
+ To apply the Apache License to your work, attach the following
1619
+ boilerplate notice, with the fields enclosed by brackets "[]"
1620
+ replaced with your own identifying information. (Don't include
1621
+ the brackets!) The text should be enclosed in the appropriate
1622
+ comment syntax for the file format. We also recommend that a
1623
+ file or class name and description of purpose be included on the
1624
+ same "printed page" as the copyright notice for easier
1625
+ identification within third-party archives.
1626
+
1627
+ Copyright [yyyy] [name of copyright owner]
1628
+
1629
+ Licensed under the Apache License, Version 2.0 (the "License");
1630
+ you may not use this file except in compliance with the License.
1631
+ You may obtain a copy of the License at
1632
+
1633
+ http://www.apache.org/licenses/LICENSE-2.0
1634
+
1635
+ Unless required by applicable law or agreed to in writing, software
1636
+ distributed under the License is distributed on an "AS IS" BASIS,
1637
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1638
+ See the License for the specific language governing permissions and
1639
+ limitations under the License.
1640
+ =========================================
1641
+ END OF baseline-browser-mapping@2.10.40 NOTICES AND INFORMATION
1642
+
1643
+ %% browserslist@4.28.4 NOTICES AND INFORMATION BEGIN HERE
1644
+ =========================================
1645
+ The MIT License (MIT)
1646
+
1647
+ Copyright 2014 Andrey Sitnik <andrey@sitnik.es> and other contributors
1648
+
1649
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
1650
+ this software and associated documentation files (the "Software"), to deal in
1651
+ the Software without restriction, including without limitation the rights to
1652
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
1653
+ the Software, and to permit persons to whom the Software is furnished to do so,
1654
+ subject to the following conditions:
1655
+
1656
+ The above copyright notice and this permission notice shall be included in all
1657
+ copies or substantial portions of the Software.
1658
+
1659
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1660
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
1661
+ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
1662
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
1663
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
1664
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1665
+ =========================================
1666
+ END OF browserslist@4.28.4 NOTICES AND INFORMATION
1667
+
1668
+ %% caniuse-lite@1.0.30001799 NOTICES AND INFORMATION BEGIN HERE
1669
+ =========================================
1670
+ Attribution 4.0 International
1671
+
1672
+ =======================================================================
1673
+
1674
+ Creative Commons Corporation ("Creative Commons") is not a law firm and
1675
+ does not provide legal services or legal advice. Distribution of
1676
+ Creative Commons public licenses does not create a lawyer-client or
1677
+ other relationship. Creative Commons makes its licenses and related
1678
+ information available on an "as-is" basis. Creative Commons gives no
1679
+ warranties regarding its licenses, any material licensed under their
1680
+ terms and conditions, or any related information. Creative Commons
1681
+ disclaims all liability for damages resulting from their use to the
1682
+ fullest extent possible.
1683
+
1684
+ Using Creative Commons Public Licenses
1685
+
1686
+ Creative Commons public licenses provide a standard set of terms and
1687
+ conditions that creators and other rights holders may use to share
1688
+ original works of authorship and other material subject to copyright
1689
+ and certain other rights specified in the public license below. The
1690
+ following considerations are for informational purposes only, are not
1691
+ exhaustive, and do not form part of our licenses.
1692
+
1693
+ Considerations for licensors: Our public licenses are
1694
+ intended for use by those authorized to give the public
1695
+ permission to use material in ways otherwise restricted by
1696
+ copyright and certain other rights. Our licenses are
1697
+ irrevocable. Licensors should read and understand the terms
1698
+ and conditions of the license they choose before applying it.
1699
+ Licensors should also secure all rights necessary before
1700
+ applying our licenses so that the public can reuse the
1701
+ material as expected. Licensors should clearly mark any
1702
+ material not subject to the license. This includes other CC-
1703
+ licensed material, or material used under an exception or
1704
+ limitation to copyright. More considerations for licensors:
1705
+ wiki.creativecommons.org/Considerations_for_licensors
1706
+
1707
+ Considerations for the public: By using one of our public
1708
+ licenses, a licensor grants the public permission to use the
1709
+ licensed material under specified terms and conditions. If
1710
+ the licensor's permission is not necessary for any reason--for
1711
+ example, because of any applicable exception or limitation to
1712
+ copyright--then that use is not regulated by the license. Our
1713
+ licenses grant only permissions under copyright and certain
1714
+ other rights that a licensor has authority to grant. Use of
1715
+ the licensed material may still be restricted for other
1716
+ reasons, including because others have copyright or other
1717
+ rights in the material. A licensor may make special requests,
1718
+ such as asking that all changes be marked or described.
1719
+ Although not required by our licenses, you are encouraged to
1720
+ respect those requests where reasonable. More_considerations
1721
+ for the public:
1722
+ wiki.creativecommons.org/Considerations_for_licensees
1723
+
1724
+ =======================================================================
1725
+
1726
+ Creative Commons Attribution 4.0 International Public License
1727
+
1728
+ By exercising the Licensed Rights (defined below), You accept and agree
1729
+ to be bound by the terms and conditions of this Creative Commons
1730
+ Attribution 4.0 International Public License ("Public License"). To the
1731
+ extent this Public License may be interpreted as a contract, You are
1732
+ granted the Licensed Rights in consideration of Your acceptance of
1733
+ these terms and conditions, and the Licensor grants You such rights in
1734
+ consideration of benefits the Licensor receives from making the
1735
+ Licensed Material available under these terms and conditions.
1736
+
1737
+
1738
+ Section 1 -- Definitions.
1739
+
1740
+ a. Adapted Material means material subject to Copyright and Similar
1741
+ Rights that is derived from or based upon the Licensed Material
1742
+ and in which the Licensed Material is translated, altered,
1743
+ arranged, transformed, or otherwise modified in a manner requiring
1744
+ permission under the Copyright and Similar Rights held by the
1745
+ Licensor. For purposes of this Public License, where the Licensed
1746
+ Material is a musical work, performance, or sound recording,
1747
+ Adapted Material is always produced where the Licensed Material is
1748
+ synched in timed relation with a moving image.
1749
+
1750
+ b. Adapter's License means the license You apply to Your Copyright
1751
+ and Similar Rights in Your contributions to Adapted Material in
1752
+ accordance with the terms and conditions of this Public License.
1753
+
1754
+ c. Copyright and Similar Rights means copyright and/or similar rights
1755
+ closely related to copyright including, without limitation,
1756
+ performance, broadcast, sound recording, and Sui Generis Database
1757
+ Rights, without regard to how the rights are labeled or
1758
+ categorized. For purposes of this Public License, the rights
1759
+ specified in Section 2(b)(1)-(2) are not Copyright and Similar
1760
+ Rights.
1761
+
1762
+ d. Effective Technological Measures means those measures that, in the
1763
+ absence of proper authority, may not be circumvented under laws
1764
+ fulfilling obligations under Article 11 of the WIPO Copyright
1765
+ Treaty adopted on December 20, 1996, and/or similar international
1766
+ agreements.
1767
+
1768
+ e. Exceptions and Limitations means fair use, fair dealing, and/or
1769
+ any other exception or limitation to Copyright and Similar Rights
1770
+ that applies to Your use of the Licensed Material.
1771
+
1772
+ f. Licensed Material means the artistic or literary work, database,
1773
+ or other material to which the Licensor applied this Public
1774
+ License.
1775
+
1776
+ g. Licensed Rights means the rights granted to You subject to the
1777
+ terms and conditions of this Public License, which are limited to
1778
+ all Copyright and Similar Rights that apply to Your use of the
1779
+ Licensed Material and that the Licensor has authority to license.
1780
+
1781
+ h. Licensor means the individual(s) or entity(ies) granting rights
1782
+ under this Public License.
1783
+
1784
+ i. Share means to provide material to the public by any means or
1785
+ process that requires permission under the Licensed Rights, such
1786
+ as reproduction, public display, public performance, distribution,
1787
+ dissemination, communication, or importation, and to make material
1788
+ available to the public including in ways that members of the
1789
+ public may access the material from a place and at a time
1790
+ individually chosen by them.
1791
+
1792
+ j. Sui Generis Database Rights means rights other than copyright
1793
+ resulting from Directive 96/9/EC of the European Parliament and of
1794
+ the Council of 11 March 1996 on the legal protection of databases,
1795
+ as amended and/or succeeded, as well as other essentially
1796
+ equivalent rights anywhere in the world.
1797
+
1798
+ k. You means the individual or entity exercising the Licensed Rights
1799
+ under this Public License. Your has a corresponding meaning.
1800
+
1801
+
1802
+ Section 2 -- Scope.
1803
+
1804
+ a. License grant.
1805
+
1806
+ 1. Subject to the terms and conditions of this Public License,
1807
+ the Licensor hereby grants You a worldwide, royalty-free,
1808
+ non-sublicensable, non-exclusive, irrevocable license to
1809
+ exercise the Licensed Rights in the Licensed Material to:
1810
+
1811
+ a. reproduce and Share the Licensed Material, in whole or
1812
+ in part; and
1813
+
1814
+ b. produce, reproduce, and Share Adapted Material.
1815
+
1816
+ 2. Exceptions and Limitations. For the avoidance of doubt, where
1817
+ Exceptions and Limitations apply to Your use, this Public
1818
+ License does not apply, and You do not need to comply with
1819
+ its terms and conditions.
1820
+
1821
+ 3. Term. The term of this Public License is specified in Section
1822
+ 6(a).
1823
+
1824
+ 4. Media and formats; technical modifications allowed. The
1825
+ Licensor authorizes You to exercise the Licensed Rights in
1826
+ all media and formats whether now known or hereafter created,
1827
+ and to make technical modifications necessary to do so. The
1828
+ Licensor waives and/or agrees not to assert any right or
1829
+ authority to forbid You from making technical modifications
1830
+ necessary to exercise the Licensed Rights, including
1831
+ technical modifications necessary to circumvent Effective
1832
+ Technological Measures. For purposes of this Public License,
1833
+ simply making modifications authorized by this Section 2(a)
1834
+ (4) never produces Adapted Material.
1835
+
1836
+ 5. Downstream recipients.
1837
+
1838
+ a. Offer from the Licensor -- Licensed Material. Every
1839
+ recipient of the Licensed Material automatically
1840
+ receives an offer from the Licensor to exercise the
1841
+ Licensed Rights under the terms and conditions of this
1842
+ Public License.
1843
+
1844
+ b. No downstream restrictions. You may not offer or impose
1845
+ any additional or different terms or conditions on, or
1846
+ apply any Effective Technological Measures to, the
1847
+ Licensed Material if doing so restricts exercise of the
1848
+ Licensed Rights by any recipient of the Licensed
1849
+ Material.
1850
+
1851
+ 6. No endorsement. Nothing in this Public License constitutes or
1852
+ may be construed as permission to assert or imply that You
1853
+ are, or that Your use of the Licensed Material is, connected
1854
+ with, or sponsored, endorsed, or granted official status by,
1855
+ the Licensor or others designated to receive attribution as
1856
+ provided in Section 3(a)(1)(A)(i).
1857
+
1858
+ b. Other rights.
1859
+
1860
+ 1. Moral rights, such as the right of integrity, are not
1861
+ licensed under this Public License, nor are publicity,
1862
+ privacy, and/or other similar personality rights; however, to
1863
+ the extent possible, the Licensor waives and/or agrees not to
1864
+ assert any such rights held by the Licensor to the limited
1865
+ extent necessary to allow You to exercise the Licensed
1866
+ Rights, but not otherwise.
1867
+
1868
+ 2. Patent and trademark rights are not licensed under this
1869
+ Public License.
1870
+
1871
+ 3. To the extent possible, the Licensor waives any right to
1872
+ collect royalties from You for the exercise of the Licensed
1873
+ Rights, whether directly or through a collecting society
1874
+ under any voluntary or waivable statutory or compulsory
1875
+ licensing scheme. In all other cases the Licensor expressly
1876
+ reserves any right to collect such royalties.
1877
+
1878
+
1879
+ Section 3 -- License Conditions.
1880
+
1881
+ Your exercise of the Licensed Rights is expressly made subject to the
1882
+ following conditions.
1883
+
1884
+ a. Attribution.
1885
+
1886
+ 1. If You Share the Licensed Material (including in modified
1887
+ form), You must:
1888
+
1889
+ a. retain the following if it is supplied by the Licensor
1890
+ with the Licensed Material:
1891
+
1892
+ i. identification of the creator(s) of the Licensed
1893
+ Material and any others designated to receive
1894
+ attribution, in any reasonable manner requested by
1895
+ the Licensor (including by pseudonym if
1896
+ designated);
1897
+
1898
+ ii. a copyright notice;
1899
+
1900
+ iii. a notice that refers to this Public License;
1901
+
1902
+ iv. a notice that refers to the disclaimer of
1903
+ warranties;
1904
+
1905
+ v. a URI or hyperlink to the Licensed Material to the
1906
+ extent reasonably practicable;
1907
+
1908
+ b. indicate if You modified the Licensed Material and
1909
+ retain an indication of any previous modifications; and
1910
+
1911
+ c. indicate the Licensed Material is licensed under this
1912
+ Public License, and include the text of, or the URI or
1913
+ hyperlink to, this Public License.
1914
+
1915
+ 2. You may satisfy the conditions in Section 3(a)(1) in any
1916
+ reasonable manner based on the medium, means, and context in
1917
+ which You Share the Licensed Material. For example, it may be
1918
+ reasonable to satisfy the conditions by providing a URI or
1919
+ hyperlink to a resource that includes the required
1920
+ information.
1921
+
1922
+ 3. If requested by the Licensor, You must remove any of the
1923
+ information required by Section 3(a)(1)(A) to the extent
1924
+ reasonably practicable.
1925
+
1926
+ 4. If You Share Adapted Material You produce, the Adapter's
1927
+ License You apply must not prevent recipients of the Adapted
1928
+ Material from complying with this Public License.
1929
+
1930
+
1931
+ Section 4 -- Sui Generis Database Rights.
1932
+
1933
+ Where the Licensed Rights include Sui Generis Database Rights that
1934
+ apply to Your use of the Licensed Material:
1935
+
1936
+ a. for the avoidance of doubt, Section 2(a)(1) grants You the right
1937
+ to extract, reuse, reproduce, and Share all or a substantial
1938
+ portion of the contents of the database;
1939
+
1940
+ b. if You include all or a substantial portion of the database
1941
+ contents in a database in which You have Sui Generis Database
1942
+ Rights, then the database in which You have Sui Generis Database
1943
+ Rights (but not its individual contents) is Adapted Material; and
1944
+
1945
+ c. You must comply with the conditions in Section 3(a) if You Share
1946
+ all or a substantial portion of the contents of the database.
1947
+
1948
+ For the avoidance of doubt, this Section 4 supplements and does not
1949
+ replace Your obligations under this Public License where the Licensed
1950
+ Rights include other Copyright and Similar Rights.
1951
+
1952
+
1953
+ Section 5 -- Disclaimer of Warranties and Limitation of Liability.
1954
+
1955
+ a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE
1956
+ EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS
1957
+ AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF
1958
+ ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS,
1959
+ IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION,
1960
+ WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR
1961
+ PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS,
1962
+ ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT
1963
+ KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT
1964
+ ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU.
1965
+
1966
+ b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE
1967
+ TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION,
1968
+ NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT,
1969
+ INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES,
1970
+ COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR
1971
+ USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN
1972
+ ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR
1973
+ DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR
1974
+ IN PART, THIS LIMITATION MAY NOT APPLY TO YOU.
1975
+
1976
+ c. The disclaimer of warranties and limitation of liability provided
1977
+ above shall be interpreted in a manner that, to the extent
1978
+ possible, most closely approximates an absolute disclaimer and
1979
+ waiver of all liability.
1980
+
1981
+
1982
+ Section 6 -- Term and Termination.
1983
+
1984
+ a. This Public License applies for the term of the Copyright and
1985
+ Similar Rights licensed here. However, if You fail to comply with
1986
+ this Public License, then Your rights under this Public License
1987
+ terminate automatically.
1988
+
1989
+ b. Where Your right to use the Licensed Material has terminated under
1990
+ Section 6(a), it reinstates:
1991
+
1992
+ 1. automatically as of the date the violation is cured, provided
1993
+ it is cured within 30 days of Your discovery of the
1994
+ violation; or
1995
+
1996
+ 2. upon express reinstatement by the Licensor.
1997
+
1998
+ For the avoidance of doubt, this Section 6(b) does not affect any
1999
+ right the Licensor may have to seek remedies for Your violations
2000
+ of this Public License.
2001
+
2002
+ c. For the avoidance of doubt, the Licensor may also offer the
2003
+ Licensed Material under separate terms or conditions or stop
2004
+ distributing the Licensed Material at any time; however, doing so
2005
+ will not terminate this Public License.
2006
+
2007
+ d. Sections 1, 5, 6, 7, and 8 survive termination of this Public
2008
+ License.
2009
+
2010
+
2011
+ Section 7 -- Other Terms and Conditions.
2012
+
2013
+ a. The Licensor shall not be bound by any additional or different
2014
+ terms or conditions communicated by You unless expressly agreed.
2015
+
2016
+ b. Any arrangements, understandings, or agreements regarding the
2017
+ Licensed Material not stated herein are separate from and
2018
+ independent of the terms and conditions of this Public License.
2019
+
2020
+
2021
+ Section 8 -- Interpretation.
2022
+
2023
+ a. For the avoidance of doubt, this Public License does not, and
2024
+ shall not be interpreted to, reduce, limit, restrict, or impose
2025
+ conditions on any use of the Licensed Material that could lawfully
2026
+ be made without permission under this Public License.
2027
+
2028
+ b. To the extent possible, if any provision of this Public License is
2029
+ deemed unenforceable, it shall be automatically reformed to the
2030
+ minimum extent necessary to make it enforceable. If the provision
2031
+ cannot be reformed, it shall be severed from this Public License
2032
+ without affecting the enforceability of the remaining terms and
2033
+ conditions.
2034
+
2035
+ c. No term or condition of this Public License will be waived and no
2036
+ failure to comply consented to unless expressly agreed to by the
2037
+ Licensor.
2038
+
2039
+ d. Nothing in this Public License constitutes or may be interpreted
2040
+ as a limitation upon, or waiver of, any privileges and immunities
2041
+ that apply to the Licensor or You, including from the legal
2042
+ processes of any jurisdiction or authority.
2043
+
2044
+
2045
+ =======================================================================
2046
+
2047
+ Creative Commons is not a party to its public
2048
+ licenses. Notwithstanding, Creative Commons may elect to apply one of
2049
+ its public licenses to material it publishes and in those instances
2050
+ will be considered the “Licensor.” The text of the Creative Commons
2051
+ public licenses is dedicated to the public domain under the CC0 Public
2052
+ Domain Dedication. Except for the limited purpose of indicating that
2053
+ material is shared under a Creative Commons public license or as
2054
+ otherwise permitted by the Creative Commons policies published at
2055
+ creativecommons.org/policies, Creative Commons does not authorize the
2056
+ use of the trademark "Creative Commons" or any other trademark or logo
2057
+ of Creative Commons without its prior written consent including,
2058
+ without limitation, in connection with any unauthorized modifications
2059
+ to any of its public licenses or any other arrangements,
2060
+ understandings, or agreements concerning use of licensed material. For
2061
+ the avoidance of doubt, this paragraph does not form part of the
2062
+ public licenses.
2063
+
2064
+ Creative Commons may be contacted at creativecommons.org.
2065
+ =========================================
2066
+ END OF caniuse-lite@1.0.30001799 NOTICES AND INFORMATION
2067
+
2068
+ %% convert-source-map@2.0.0 NOTICES AND INFORMATION BEGIN HERE
2069
+ =========================================
2070
+ Copyright 2013 Thorsten Lorenz.
2071
+ All rights reserved.
2072
+
2073
+ Permission is hereby granted, free of charge, to any person
2074
+ obtaining a copy of this software and associated documentation
2075
+ files (the "Software"), to deal in the Software without
2076
+ restriction, including without limitation the rights to use,
2077
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
2078
+ copies of the Software, and to permit persons to whom the
2079
+ Software is furnished to do so, subject to the following
2080
+ conditions:
2081
+
2082
+ The above copyright notice and this permission notice shall be
2083
+ included in all copies or substantial portions of the Software.
2084
+
2085
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
2086
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
2087
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
2088
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
2089
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
2090
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
2091
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
2092
+ OTHER DEALINGS IN THE SOFTWARE.
2093
+ =========================================
2094
+ END OF convert-source-map@2.0.0 NOTICES AND INFORMATION
2095
+
2096
+ %% debug@4.4.3 NOTICES AND INFORMATION BEGIN HERE
2097
+ =========================================
2098
+ (The MIT License)
2099
+
2100
+ Copyright (c) 2014-2017 TJ Holowaychuk <tj@vision-media.ca>
2101
+ Copyright (c) 2018-2021 Josh Junon
2102
+
2103
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software
2104
+ and associated documentation files (the 'Software'), to deal in the Software without restriction,
2105
+ including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,
2106
+ and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,
2107
+ subject to the following conditions:
2108
+
2109
+ The above copyright notice and this permission notice shall be included in all copies or substantial
2110
+ portions of the Software.
2111
+
2112
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
2113
+ LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
2114
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
2115
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
2116
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2117
+ =========================================
2118
+ END OF debug@4.4.3 NOTICES AND INFORMATION
2119
+
2120
+ %% electron-to-chromium@1.5.381 NOTICES AND INFORMATION BEGIN HERE
2121
+ =========================================
2122
+ Copyright 2018 Kilian Valkhof
2123
+
2124
+ Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.
2125
+
2126
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
2127
+ =========================================
2128
+ END OF electron-to-chromium@1.5.381 NOTICES AND INFORMATION
2129
+
2130
+ %% gensync@1.0.0-beta.2 NOTICES AND INFORMATION BEGIN HERE
2131
+ =========================================
2132
+ Copyright 2018 Logan Smyth <loganfsmyth@gmail.com>
2133
+
2134
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
2135
+
2136
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
2137
+
2138
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2139
+ =========================================
2140
+ END OF gensync@1.0.0-beta.2 NOTICES AND INFORMATION
2141
+
2142
+ %% has-flag@4.0.0 NOTICES AND INFORMATION BEGIN HERE
2143
+ =========================================
2144
+ MIT License
2145
+
2146
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
2147
+
2148
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
2149
+
2150
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
2151
+
2152
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2153
+ =========================================
2154
+ END OF has-flag@4.0.0 NOTICES AND INFORMATION
2155
+
2156
+ %% js-tokens@4.0.0 NOTICES AND INFORMATION BEGIN HERE
2157
+ =========================================
2158
+ The MIT License (MIT)
2159
+
2160
+ Copyright (c) 2014, 2015, 2016, 2017, 2018 Simon Lydell
2161
+
2162
+ Permission is hereby granted, free of charge, to any person obtaining a copy
2163
+ of this software and associated documentation files (the "Software"), to deal
2164
+ in the Software without restriction, including without limitation the rights
2165
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2166
+ copies of the Software, and to permit persons to whom the Software is
2167
+ furnished to do so, subject to the following conditions:
2168
+
2169
+ The above copyright notice and this permission notice shall be included in
2170
+ all copies or substantial portions of the Software.
2171
+
2172
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2173
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2174
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2175
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2176
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2177
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2178
+ THE SOFTWARE.
2179
+ =========================================
2180
+ END OF js-tokens@4.0.0 NOTICES AND INFORMATION
2181
+
2182
+ %% jsesc@3.1.0 NOTICES AND INFORMATION BEGIN HERE
2183
+ =========================================
2184
+ Copyright Mathias Bynens <https://mathiasbynens.be/>
2185
+
2186
+ Permission is hereby granted, free of charge, to any person obtaining
2187
+ a copy of this software and associated documentation files (the
2188
+ "Software"), to deal in the Software without restriction, including
2189
+ without limitation the rights to use, copy, modify, merge, publish,
2190
+ distribute, sublicense, and/or sell copies of the Software, and to
2191
+ permit persons to whom the Software is furnished to do so, subject to
2192
+ the following conditions:
2193
+
2194
+ The above copyright notice and this permission notice shall be
2195
+ included in all copies or substantial portions of the Software.
2196
+
2197
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
2198
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
2199
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
2200
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
2201
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
2202
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
2203
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2204
+ =========================================
2205
+ END OF jsesc@3.1.0 NOTICES AND INFORMATION
2206
+
2207
+ %% json5@2.2.3 NOTICES AND INFORMATION BEGIN HERE
2208
+ =========================================
2209
+ MIT License
2210
+
2211
+ Copyright (c) 2012-2018 Aseem Kishore, and [others].
2212
+
2213
+ Permission is hereby granted, free of charge, to any person obtaining a copy
2214
+ of this software and associated documentation files (the "Software"), to deal
2215
+ in the Software without restriction, including without limitation the rights
2216
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2217
+ copies of the Software, and to permit persons to whom the Software is
2218
+ furnished to do so, subject to the following conditions:
2219
+
2220
+ The above copyright notice and this permission notice shall be included in all
2221
+ copies or substantial portions of the Software.
2222
+
2223
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2224
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2225
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2226
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2227
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2228
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2229
+ SOFTWARE.
2230
+
2231
+ [others]: https://github.com/json5/json5/contributors
2232
+ =========================================
2233
+ END OF json5@2.2.3 NOTICES AND INFORMATION
2234
+
2235
+ %% lru-cache@5.1.1 NOTICES AND INFORMATION BEGIN HERE
2236
+ =========================================
2237
+ The ISC License
2238
+
2239
+ Copyright (c) Isaac Z. Schlueter and Contributors
2240
+
2241
+ Permission to use, copy, modify, and/or distribute this software for any
2242
+ purpose with or without fee is hereby granted, provided that the above
2243
+ copyright notice and this permission notice appear in all copies.
2244
+
2245
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
2246
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
2247
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
2248
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
2249
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
2250
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
2251
+ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
2252
+ =========================================
2253
+ END OF lru-cache@5.1.1 NOTICES AND INFORMATION
2254
+
2255
+ %% ms@2.1.3 NOTICES AND INFORMATION BEGIN HERE
2256
+ =========================================
2257
+ The MIT License (MIT)
2258
+
2259
+ Copyright (c) 2020 Vercel, Inc.
2260
+
2261
+ Permission is hereby granted, free of charge, to any person obtaining a copy
2262
+ of this software and associated documentation files (the "Software"), to deal
2263
+ in the Software without restriction, including without limitation the rights
2264
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2265
+ copies of the Software, and to permit persons to whom the Software is
2266
+ furnished to do so, subject to the following conditions:
2267
+
2268
+ The above copyright notice and this permission notice shall be included in all
2269
+ copies or substantial portions of the Software.
2270
+
2271
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2272
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2273
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2274
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2275
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2276
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2277
+ SOFTWARE.
2278
+ =========================================
2279
+ END OF ms@2.1.3 NOTICES AND INFORMATION
2280
+
2281
+ %% node-releases@2.0.50 NOTICES AND INFORMATION BEGIN HERE
2282
+ =========================================
2283
+ The MIT License
2284
+
2285
+ Copyright (c) 2017 Sergey Rubanov (https://github.com/chicoxyzzy)
2286
+
2287
+ Permission is hereby granted, free of charge, to any person obtaining a copy
2288
+ of this software and associated documentation files (the "Software"), to deal
2289
+ in the Software without restriction, including without limitation the rights
2290
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2291
+ copies of the Software, and to permit persons to whom the Software is
2292
+ furnished to do so, subject to the following conditions:
2293
+
2294
+ The above copyright notice and this permission notice shall be included in
2295
+ all copies or substantial portions of the Software.
2296
+
2297
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2298
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2299
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2300
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2301
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2302
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2303
+ THE SOFTWARE.
2304
+ =========================================
2305
+ END OF node-releases@2.0.50 NOTICES AND INFORMATION
2306
+
2307
+ %% picocolors@1.1.1 NOTICES AND INFORMATION BEGIN HERE
2308
+ =========================================
2309
+ ISC License
2310
+
2311
+ Copyright (c) 2021-2024 Oleksii Raspopov, Kostiantyn Denysov, Anton Verinov
2312
+
2313
+ Permission to use, copy, modify, and/or distribute this software for any
2314
+ purpose with or without fee is hereby granted, provided that the above
2315
+ copyright notice and this permission notice appear in all copies.
2316
+
2317
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
2318
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
2319
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
2320
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
2321
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
2322
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
2323
+ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
2324
+ =========================================
2325
+ END OF picocolors@1.1.1 NOTICES AND INFORMATION
2326
+
2327
+ %% semver@6.3.1 NOTICES AND INFORMATION BEGIN HERE
2328
+ =========================================
2329
+ The ISC License
2330
+
2331
+ Copyright (c) Isaac Z. Schlueter and Contributors
2332
+
2333
+ Permission to use, copy, modify, and/or distribute this software for any
2334
+ purpose with or without fee is hereby granted, provided that the above
2335
+ copyright notice and this permission notice appear in all copies.
2336
+
2337
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
2338
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
2339
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
2340
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
2341
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
2342
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
2343
+ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
2344
+ =========================================
2345
+ END OF semver@6.3.1 NOTICES AND INFORMATION
2346
+
2347
+ %% supports-color@7.2.0 NOTICES AND INFORMATION BEGIN HERE
2348
+ =========================================
2349
+ MIT License
2350
+
2351
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
2352
+
2353
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
2354
+
2355
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
2356
+
2357
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2358
+ =========================================
2359
+ END OF supports-color@7.2.0 NOTICES AND INFORMATION
2360
+
2361
+ %% yallist@3.1.1 NOTICES AND INFORMATION BEGIN HERE
2362
+ =========================================
2363
+ The ISC License
2364
+
2365
+ Copyright (c) Isaac Z. Schlueter and Contributors
2366
+
2367
+ Permission to use, copy, modify, and/or distribute this software for any
2368
+ purpose with or without fee is hereby granted, provided that the above
2369
+ copyright notice and this permission notice appear in all copies.
2370
+
2371
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
2372
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
2373
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
2374
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
2375
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
2376
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
2377
+ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
2378
+ =========================================
2379
+ END OF yallist@3.1.1 NOTICES AND INFORMATION
2380
+
2381
+ SUMMARY
2382
+ =========================================
2383
+ Total Packages: 69
2384
+ =========================================