playwright-codegen-pro-core 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (468) hide show
  1. package/LICENSE +202 -0
  2. package/NOTICE +5 -0
  3. package/README.md +3 -0
  4. package/ThirdPartyNotices.txt +3552 -0
  5. package/bin/install_media_pack.ps1 +5 -0
  6. package/bin/install_webkit_wsl.ps1 +33 -0
  7. package/bin/reinstall_chrome_beta_linux.sh +42 -0
  8. package/bin/reinstall_chrome_beta_mac.sh +13 -0
  9. package/bin/reinstall_chrome_beta_win.ps1 +24 -0
  10. package/bin/reinstall_chrome_stable_linux.sh +42 -0
  11. package/bin/reinstall_chrome_stable_mac.sh +12 -0
  12. package/bin/reinstall_chrome_stable_win.ps1 +24 -0
  13. package/bin/reinstall_msedge_beta_linux.sh +48 -0
  14. package/bin/reinstall_msedge_beta_mac.sh +11 -0
  15. package/bin/reinstall_msedge_beta_win.ps1 +23 -0
  16. package/bin/reinstall_msedge_dev_linux.sh +48 -0
  17. package/bin/reinstall_msedge_dev_mac.sh +11 -0
  18. package/bin/reinstall_msedge_dev_win.ps1 +23 -0
  19. package/bin/reinstall_msedge_stable_linux.sh +48 -0
  20. package/bin/reinstall_msedge_stable_mac.sh +11 -0
  21. package/bin/reinstall_msedge_stable_win.ps1 +24 -0
  22. package/browsers.json +81 -0
  23. package/bundles/mcp/package-lock.json +1135 -0
  24. package/bundles/mcp/package.json +10 -0
  25. package/bundles/mcp/raw-body.ts +43 -0
  26. package/bundles/utils/package-lock.json +466 -0
  27. package/bundles/utils/package.json +40 -0
  28. package/bundles/zip/package-lock.json +257 -0
  29. package/bundles/zip/package.json +16 -0
  30. package/cli.js +18 -0
  31. package/index.d.ts +17 -0
  32. package/index.js +32 -0
  33. package/index.mjs +28 -0
  34. package/lib/androidServerImpl.js +65 -0
  35. package/lib/browserServerImpl.js +120 -0
  36. package/lib/cli/driver.js +98 -0
  37. package/lib/cli/program.js +599 -0
  38. package/lib/cli/programWithTestStub.js +74 -0
  39. package/lib/client/android.js +361 -0
  40. package/lib/client/api.js +137 -0
  41. package/lib/client/artifact.js +79 -0
  42. package/lib/client/browser.js +169 -0
  43. package/lib/client/browserContext.js +563 -0
  44. package/lib/client/browserType.js +153 -0
  45. package/lib/client/cdpSession.js +55 -0
  46. package/lib/client/channelOwner.js +194 -0
  47. package/lib/client/clientHelper.js +64 -0
  48. package/lib/client/clientInstrumentation.js +55 -0
  49. package/lib/client/clientStackTrace.js +69 -0
  50. package/lib/client/clock.js +68 -0
  51. package/lib/client/connect.js +143 -0
  52. package/lib/client/connection.js +322 -0
  53. package/lib/client/consoleMessage.js +61 -0
  54. package/lib/client/coverage.js +44 -0
  55. package/lib/client/debugger.js +57 -0
  56. package/lib/client/dialog.js +56 -0
  57. package/lib/client/disposable.js +76 -0
  58. package/lib/client/download.js +62 -0
  59. package/lib/client/electron.js +138 -0
  60. package/lib/client/elementHandle.js +281 -0
  61. package/lib/client/errors.js +77 -0
  62. package/lib/client/eventEmitter.js +314 -0
  63. package/lib/client/events.js +103 -0
  64. package/lib/client/fetch.js +367 -0
  65. package/lib/client/fileChooser.js +46 -0
  66. package/lib/client/fileUtils.js +34 -0
  67. package/lib/client/frame.js +404 -0
  68. package/lib/client/harRouter.js +99 -0
  69. package/lib/client/input.js +84 -0
  70. package/lib/client/jsHandle.js +105 -0
  71. package/lib/client/jsonPipe.js +39 -0
  72. package/lib/client/localUtils.js +60 -0
  73. package/lib/client/locator.js +367 -0
  74. package/lib/client/network.js +750 -0
  75. package/lib/client/page.js +729 -0
  76. package/lib/client/platform.js +77 -0
  77. package/lib/client/playwright.js +71 -0
  78. package/lib/client/screencast.js +48 -0
  79. package/lib/client/selectors.js +57 -0
  80. package/lib/client/stream.js +39 -0
  81. package/lib/client/timeoutSettings.js +79 -0
  82. package/lib/client/tracing.js +126 -0
  83. package/lib/client/types.js +28 -0
  84. package/lib/client/video.js +68 -0
  85. package/lib/client/waiter.js +142 -0
  86. package/lib/client/webError.js +39 -0
  87. package/lib/client/worker.js +85 -0
  88. package/lib/client/writableStream.js +39 -0
  89. package/lib/generated/bindingsControllerSource.js +28 -0
  90. package/lib/generated/clockSource.js +28 -0
  91. package/lib/generated/injectedScriptSource.js +28 -0
  92. package/lib/generated/pollingRecorderSource.js +28 -0
  93. package/lib/generated/storageScriptSource.js +28 -0
  94. package/lib/generated/utilityScriptSource.js +28 -0
  95. package/lib/generated/webSocketMockSource.js +336 -0
  96. package/lib/inProcessFactory.js +60 -0
  97. package/lib/inprocess.js +3 -0
  98. package/lib/mcpBundle.js +81 -0
  99. package/lib/mcpBundleImpl/index.js +91 -0
  100. package/lib/outofprocess.js +76 -0
  101. package/lib/protocol/serializers.js +197 -0
  102. package/lib/protocol/validator.js +3035 -0
  103. package/lib/protocol/validatorPrimitives.js +193 -0
  104. package/lib/remote/playwrightConnection.js +131 -0
  105. package/lib/remote/playwrightPipeServer.js +100 -0
  106. package/lib/remote/playwrightServer.js +339 -0
  107. package/lib/remote/playwrightWebSocketServer.js +73 -0
  108. package/lib/remote/serverTransport.js +96 -0
  109. package/lib/server/android/android.js +465 -0
  110. package/lib/server/android/backendAdb.js +177 -0
  111. package/lib/server/artifact.js +127 -0
  112. package/lib/server/bidi/bidiBrowser.js +571 -0
  113. package/lib/server/bidi/bidiChromium.js +162 -0
  114. package/lib/server/bidi/bidiConnection.js +213 -0
  115. package/lib/server/bidi/bidiDeserializer.js +116 -0
  116. package/lib/server/bidi/bidiExecutionContext.js +267 -0
  117. package/lib/server/bidi/bidiFirefox.js +128 -0
  118. package/lib/server/bidi/bidiInput.js +146 -0
  119. package/lib/server/bidi/bidiNetworkManager.js +411 -0
  120. package/lib/server/bidi/bidiOverCdp.js +102 -0
  121. package/lib/server/bidi/bidiPage.js +599 -0
  122. package/lib/server/bidi/bidiPdf.js +106 -0
  123. package/lib/server/bidi/third_party/bidiCommands.d.js +22 -0
  124. package/lib/server/bidi/third_party/bidiKeyboard.js +256 -0
  125. package/lib/server/bidi/third_party/bidiProtocol.js +24 -0
  126. package/lib/server/bidi/third_party/bidiProtocolCore.js +180 -0
  127. package/lib/server/bidi/third_party/bidiProtocolPermissions.js +42 -0
  128. package/lib/server/bidi/third_party/bidiSerializer.js +148 -0
  129. package/lib/server/bidi/third_party/firefoxPrefs.js +261 -0
  130. package/lib/server/browser.js +223 -0
  131. package/lib/server/browserContext.js +703 -0
  132. package/lib/server/browserType.js +338 -0
  133. package/lib/server/callLog.js +82 -0
  134. package/lib/server/chromium/appIcon.png +0 -0
  135. package/lib/server/chromium/chromium.js +399 -0
  136. package/lib/server/chromium/chromiumSwitches.js +104 -0
  137. package/lib/server/chromium/crBrowser.js +532 -0
  138. package/lib/server/chromium/crConnection.js +197 -0
  139. package/lib/server/chromium/crCoverage.js +235 -0
  140. package/lib/server/chromium/crDevTools.js +111 -0
  141. package/lib/server/chromium/crDragDrop.js +131 -0
  142. package/lib/server/chromium/crExecutionContext.js +146 -0
  143. package/lib/server/chromium/crInput.js +187 -0
  144. package/lib/server/chromium/crNetworkManager.js +711 -0
  145. package/lib/server/chromium/crPage.js +1004 -0
  146. package/lib/server/chromium/crPdf.js +121 -0
  147. package/lib/server/chromium/crProtocolHelper.js +145 -0
  148. package/lib/server/chromium/crServiceWorker.js +137 -0
  149. package/lib/server/chromium/defaultFontFamilies.js +162 -0
  150. package/lib/server/chromium/protocol.d.js +16 -0
  151. package/lib/server/clock.js +149 -0
  152. package/lib/server/codegen/csharp.js +327 -0
  153. package/lib/server/codegen/java.js +274 -0
  154. package/lib/server/codegen/javascript.js +247 -0
  155. package/lib/server/codegen/jsonl.js +52 -0
  156. package/lib/server/codegen/language.js +132 -0
  157. package/lib/server/codegen/languages.js +68 -0
  158. package/lib/server/codegen/python.js +279 -0
  159. package/lib/server/codegen/types.js +16 -0
  160. package/lib/server/console.js +61 -0
  161. package/lib/server/cookieStore.js +206 -0
  162. package/lib/server/debugController.js +197 -0
  163. package/lib/server/debugger.js +117 -0
  164. package/lib/server/deviceDescriptors.js +39 -0
  165. package/lib/server/deviceDescriptorsSource.json +1779 -0
  166. package/lib/server/dialog.js +116 -0
  167. package/lib/server/dispatchers/androidDispatcher.js +325 -0
  168. package/lib/server/dispatchers/artifactDispatcher.js +118 -0
  169. package/lib/server/dispatchers/browserContextDispatcher.js +381 -0
  170. package/lib/server/dispatchers/browserDispatcher.js +124 -0
  171. package/lib/server/dispatchers/browserTypeDispatcher.js +71 -0
  172. package/lib/server/dispatchers/cdpSessionDispatcher.js +47 -0
  173. package/lib/server/dispatchers/debugControllerDispatcher.js +78 -0
  174. package/lib/server/dispatchers/debuggerDispatcher.js +80 -0
  175. package/lib/server/dispatchers/dialogDispatcher.js +47 -0
  176. package/lib/server/dispatchers/dispatcher.js +364 -0
  177. package/lib/server/dispatchers/disposableDispatcher.js +39 -0
  178. package/lib/server/dispatchers/electronDispatcher.js +90 -0
  179. package/lib/server/dispatchers/elementHandlerDispatcher.js +181 -0
  180. package/lib/server/dispatchers/frameDispatcher.js +227 -0
  181. package/lib/server/dispatchers/jsHandleDispatcher.js +85 -0
  182. package/lib/server/dispatchers/jsonPipeDispatcher.js +58 -0
  183. package/lib/server/dispatchers/localUtilsDispatcher.js +185 -0
  184. package/lib/server/dispatchers/networkDispatchers.js +214 -0
  185. package/lib/server/dispatchers/pageDispatcher.js +430 -0
  186. package/lib/server/dispatchers/playwrightDispatcher.js +108 -0
  187. package/lib/server/dispatchers/streamDispatcher.js +67 -0
  188. package/lib/server/dispatchers/tracingDispatcher.js +68 -0
  189. package/lib/server/dispatchers/webSocketRouteDispatcher.js +164 -0
  190. package/lib/server/dispatchers/writableStreamDispatcher.js +79 -0
  191. package/lib/server/disposable.js +41 -0
  192. package/lib/server/dom.js +833 -0
  193. package/lib/server/download.js +71 -0
  194. package/lib/server/electron/electron.js +272 -0
  195. package/lib/server/electron/loader.js +29 -0
  196. package/lib/server/errors.js +69 -0
  197. package/lib/server/fetch.js +621 -0
  198. package/lib/server/fileChooser.js +43 -0
  199. package/lib/server/fileUploadUtils.js +84 -0
  200. package/lib/server/firefox/ffBrowser.js +415 -0
  201. package/lib/server/firefox/ffConnection.js +142 -0
  202. package/lib/server/firefox/ffExecutionContext.js +150 -0
  203. package/lib/server/firefox/ffInput.js +175 -0
  204. package/lib/server/firefox/ffNetworkManager.js +256 -0
  205. package/lib/server/firefox/ffPage.js +495 -0
  206. package/lib/server/firefox/firefox.js +114 -0
  207. package/lib/server/firefox/protocol.d.js +16 -0
  208. package/lib/server/formData.js +147 -0
  209. package/lib/server/frameSelectors.js +160 -0
  210. package/lib/server/frames.js +1495 -0
  211. package/lib/server/har/harRecorder.js +147 -0
  212. package/lib/server/har/harTracer.js +608 -0
  213. package/lib/server/harBackend.js +157 -0
  214. package/lib/server/helper.js +96 -0
  215. package/lib/server/index.js +58 -0
  216. package/lib/server/input.js +322 -0
  217. package/lib/server/instrumentation.js +72 -0
  218. package/lib/server/javascript.js +291 -0
  219. package/lib/server/launchApp.js +127 -0
  220. package/lib/server/localUtils.js +214 -0
  221. package/lib/server/macEditingCommands.js +143 -0
  222. package/lib/server/network.js +668 -0
  223. package/lib/server/page.js +884 -0
  224. package/lib/server/pipeTransport.js +89 -0
  225. package/lib/server/playwright.js +69 -0
  226. package/lib/server/progress.js +136 -0
  227. package/lib/server/protocolError.js +52 -0
  228. package/lib/server/recorder/chat.js +161 -0
  229. package/lib/server/recorder/networkCapture.js +282 -0
  230. package/lib/server/recorder/recorderApp.js +581 -0
  231. package/lib/server/recorder/recorderRunner.js +138 -0
  232. package/lib/server/recorder/recorderSignalProcessor.js +83 -0
  233. package/lib/server/recorder/recorderUtils.js +157 -0
  234. package/lib/server/recorder/sessionExporter.js +40 -0
  235. package/lib/server/recorder/sessionPromptBuilder.js +128 -0
  236. package/lib/server/recorder/sessionRedactor.js +74 -0
  237. package/lib/server/recorder/throttledFile.js +57 -0
  238. package/lib/server/recorder.js +538 -0
  239. package/lib/server/registry/browserFetcher.js +177 -0
  240. package/lib/server/registry/dependencies.js +371 -0
  241. package/lib/server/registry/index.js +1395 -0
  242. package/lib/server/registry/nativeDeps.js +1281 -0
  243. package/lib/server/registry/oopDownloadBrowserMain.js +127 -0
  244. package/lib/server/screencast.js +238 -0
  245. package/lib/server/screenshotter.js +333 -0
  246. package/lib/server/selectors.js +112 -0
  247. package/lib/server/socksClientCertificatesInterceptor.js +383 -0
  248. package/lib/server/socksInterceptor.js +95 -0
  249. package/lib/server/trace/recorder/snapshotter.js +147 -0
  250. package/lib/server/trace/recorder/snapshotterInjected.js +561 -0
  251. package/lib/server/trace/recorder/tracing.js +615 -0
  252. package/lib/server/trace/viewer/traceViewer.js +244 -0
  253. package/lib/server/transport.js +181 -0
  254. package/lib/server/types.js +28 -0
  255. package/lib/server/usKeyboardLayout.js +152 -0
  256. package/lib/server/utils/ascii.js +44 -0
  257. package/lib/server/utils/comparators.js +139 -0
  258. package/lib/server/utils/crypto.js +216 -0
  259. package/lib/server/utils/debug.js +42 -0
  260. package/lib/server/utils/debugLogger.js +122 -0
  261. package/lib/server/utils/disposable.js +32 -0
  262. package/lib/server/utils/env.js +73 -0
  263. package/lib/server/utils/eventsHelper.js +41 -0
  264. package/lib/server/utils/expectUtils.js +123 -0
  265. package/lib/server/utils/fileUtils.js +191 -0
  266. package/lib/server/utils/happyEyeballs.js +207 -0
  267. package/lib/server/utils/hostPlatform.js +123 -0
  268. package/lib/server/utils/httpServer.js +205 -0
  269. package/lib/server/utils/image_tools/colorUtils.js +89 -0
  270. package/lib/server/utils/image_tools/compare.js +109 -0
  271. package/lib/server/utils/image_tools/imageChannel.js +78 -0
  272. package/lib/server/utils/image_tools/stats.js +102 -0
  273. package/lib/server/utils/linuxUtils.js +71 -0
  274. package/lib/server/utils/network.js +243 -0
  275. package/lib/server/utils/nodePlatform.js +154 -0
  276. package/lib/server/utils/pipeTransport.js +84 -0
  277. package/lib/server/utils/processLauncher.js +243 -0
  278. package/lib/server/utils/profiler.js +65 -0
  279. package/lib/server/utils/socksProxy.js +511 -0
  280. package/lib/server/utils/spawnAsync.js +41 -0
  281. package/lib/server/utils/task.js +51 -0
  282. package/lib/server/utils/userAgent.js +98 -0
  283. package/lib/server/utils/wsServer.js +121 -0
  284. package/lib/server/utils/zipFile.js +74 -0
  285. package/lib/server/utils/zones.js +57 -0
  286. package/lib/server/videoRecorder.js +133 -0
  287. package/lib/server/webkit/protocol.d.js +16 -0
  288. package/lib/server/webkit/webkit.js +108 -0
  289. package/lib/server/webkit/wkBrowser.js +331 -0
  290. package/lib/server/webkit/wkConnection.js +144 -0
  291. package/lib/server/webkit/wkExecutionContext.js +154 -0
  292. package/lib/server/webkit/wkInput.js +181 -0
  293. package/lib/server/webkit/wkInterceptableRequest.js +197 -0
  294. package/lib/server/webkit/wkPage.js +1164 -0
  295. package/lib/server/webkit/wkProvisionalPage.js +83 -0
  296. package/lib/server/webkit/wkWorkers.js +106 -0
  297. package/lib/serverRegistry.js +147 -0
  298. package/lib/third_party/pixelmatch.js +255 -0
  299. package/lib/tools/backend/browserBackend.js +79 -0
  300. package/lib/tools/backend/common.js +63 -0
  301. package/lib/tools/backend/config.js +41 -0
  302. package/lib/tools/backend/console.js +66 -0
  303. package/lib/tools/backend/context.js +290 -0
  304. package/lib/tools/backend/cookies.js +152 -0
  305. package/lib/tools/backend/devtools.js +69 -0
  306. package/lib/tools/backend/dialogs.js +59 -0
  307. package/lib/tools/backend/evaluate.js +64 -0
  308. package/lib/tools/backend/files.js +60 -0
  309. package/lib/tools/backend/form.js +64 -0
  310. package/lib/tools/backend/keyboard.js +155 -0
  311. package/lib/tools/backend/logFile.js +95 -0
  312. package/lib/tools/backend/mouse.js +168 -0
  313. package/lib/tools/backend/navigate.js +106 -0
  314. package/lib/tools/backend/network.js +135 -0
  315. package/lib/tools/backend/pdf.js +48 -0
  316. package/lib/tools/backend/recorder.js +74 -0
  317. package/lib/tools/backend/response.js +302 -0
  318. package/lib/tools/backend/route.js +140 -0
  319. package/lib/tools/backend/runCode.js +76 -0
  320. package/lib/tools/backend/screenshot.js +88 -0
  321. package/lib/tools/backend/sessionLog.js +74 -0
  322. package/lib/tools/backend/snapshot.js +208 -0
  323. package/lib/tools/backend/storage.js +67 -0
  324. package/lib/tools/backend/tab.js +445 -0
  325. package/lib/tools/backend/tabs.js +67 -0
  326. package/lib/tools/backend/tool.js +47 -0
  327. package/lib/tools/backend/tools.js +104 -0
  328. package/lib/tools/backend/tracing.js +75 -0
  329. package/lib/tools/backend/utils.js +83 -0
  330. package/lib/tools/backend/verify.js +151 -0
  331. package/lib/tools/backend/video.js +89 -0
  332. package/lib/tools/backend/wait.js +63 -0
  333. package/lib/tools/backend/webstorage.js +223 -0
  334. package/lib/tools/cli-client/cli.js +6 -0
  335. package/lib/tools/cli-client/help.json +101 -0
  336. package/lib/tools/cli-client/minimist.js +128 -0
  337. package/lib/tools/cli-client/program.js +382 -0
  338. package/lib/tools/cli-client/registry.js +176 -0
  339. package/lib/tools/cli-client/session.js +289 -0
  340. package/lib/tools/cli-client/skill/SKILL.md +326 -0
  341. package/lib/tools/cli-client/skill/references/element-attributes.md +23 -0
  342. package/lib/tools/cli-client/skill/references/playwright-tests.md +39 -0
  343. package/lib/tools/cli-client/skill/references/request-mocking.md +87 -0
  344. package/lib/tools/cli-client/skill/references/running-code.md +231 -0
  345. package/lib/tools/cli-client/skill/references/session-management.md +169 -0
  346. package/lib/tools/cli-client/skill/references/storage-state.md +275 -0
  347. package/lib/tools/cli-client/skill/references/test-generation.md +88 -0
  348. package/lib/tools/cli-client/skill/references/tracing.md +139 -0
  349. package/lib/tools/cli-client/skill/references/video-recording.md +46 -0
  350. package/lib/tools/cli-daemon/command.js +73 -0
  351. package/lib/tools/cli-daemon/commands.js +933 -0
  352. package/lib/tools/cli-daemon/daemon.js +178 -0
  353. package/lib/tools/cli-daemon/helpGenerator.js +173 -0
  354. package/lib/tools/cli-daemon/program.js +118 -0
  355. package/lib/tools/dashboard/appIcon.png +0 -0
  356. package/lib/tools/dashboard/dashboardApp.js +286 -0
  357. package/lib/tools/dashboard/dashboardController.js +296 -0
  358. package/lib/tools/exports.js +60 -0
  359. package/lib/tools/mcp/browserFactory.js +233 -0
  360. package/lib/tools/mcp/cdpRelay.js +353 -0
  361. package/lib/tools/mcp/cli-stub.js +7 -0
  362. package/lib/tools/mcp/config.d.js +16 -0
  363. package/lib/tools/mcp/config.js +401 -0
  364. package/lib/tools/mcp/configIni.js +189 -0
  365. package/lib/tools/mcp/extensionContextFactory.js +59 -0
  366. package/lib/tools/mcp/index.js +62 -0
  367. package/lib/tools/mcp/log.js +35 -0
  368. package/lib/tools/mcp/program.js +107 -0
  369. package/lib/tools/mcp/protocol.js +28 -0
  370. package/lib/tools/mcp/watchdog.js +44 -0
  371. package/lib/tools/trace/SKILL.md +163 -0
  372. package/lib/tools/trace/installSkill.js +48 -0
  373. package/lib/tools/trace/traceActions.js +142 -0
  374. package/lib/tools/trace/traceAttachments.js +69 -0
  375. package/lib/tools/trace/traceCli.js +80 -0
  376. package/lib/tools/trace/traceConsole.js +97 -0
  377. package/lib/tools/trace/traceErrors.js +55 -0
  378. package/lib/tools/trace/traceOpen.js +69 -0
  379. package/lib/tools/trace/traceParser.js +96 -0
  380. package/lib/tools/trace/traceRequests.js +158 -0
  381. package/lib/tools/trace/traceScreenshot.js +68 -0
  382. package/lib/tools/trace/traceSnapshot.js +149 -0
  383. package/lib/tools/trace/traceUtils.js +135 -0
  384. package/lib/tools/utils/connect.js +32 -0
  385. package/lib/tools/utils/mcp/http.js +152 -0
  386. package/lib/tools/utils/mcp/server.js +230 -0
  387. package/lib/tools/utils/mcp/tool.js +47 -0
  388. package/lib/tools/utils/socketConnection.js +108 -0
  389. package/lib/utils/isomorphic/ariaSnapshot.js +455 -0
  390. package/lib/utils/isomorphic/assert.js +31 -0
  391. package/lib/utils/isomorphic/colors.js +72 -0
  392. package/lib/utils/isomorphic/cssParser.js +245 -0
  393. package/lib/utils/isomorphic/cssTokenizer.js +1051 -0
  394. package/lib/utils/isomorphic/formatUtils.js +64 -0
  395. package/lib/utils/isomorphic/headers.js +53 -0
  396. package/lib/utils/isomorphic/imageUtils.js +141 -0
  397. package/lib/utils/isomorphic/locatorGenerators.js +689 -0
  398. package/lib/utils/isomorphic/locatorParser.js +176 -0
  399. package/lib/utils/isomorphic/locatorUtils.js +81 -0
  400. package/lib/utils/isomorphic/lruCache.js +51 -0
  401. package/lib/utils/isomorphic/manualPromise.js +114 -0
  402. package/lib/utils/isomorphic/mimeType.js +464 -0
  403. package/lib/utils/isomorphic/multimap.js +80 -0
  404. package/lib/utils/isomorphic/protocolFormatter.js +81 -0
  405. package/lib/utils/isomorphic/protocolMetainfo.js +347 -0
  406. package/lib/utils/isomorphic/rtti.js +43 -0
  407. package/lib/utils/isomorphic/selectorParser.js +386 -0
  408. package/lib/utils/isomorphic/semaphore.js +54 -0
  409. package/lib/utils/isomorphic/stackTrace.js +158 -0
  410. package/lib/utils/isomorphic/stringUtils.js +204 -0
  411. package/lib/utils/isomorphic/time.js +49 -0
  412. package/lib/utils/isomorphic/timeoutRunner.js +66 -0
  413. package/lib/utils/isomorphic/trace/entries.js +16 -0
  414. package/lib/utils/isomorphic/trace/snapshotRenderer.js +492 -0
  415. package/lib/utils/isomorphic/trace/snapshotServer.js +120 -0
  416. package/lib/utils/isomorphic/trace/snapshotStorage.js +89 -0
  417. package/lib/utils/isomorphic/trace/traceLoader.js +131 -0
  418. package/lib/utils/isomorphic/trace/traceModel.js +366 -0
  419. package/lib/utils/isomorphic/trace/traceModernizer.js +401 -0
  420. package/lib/utils/isomorphic/trace/traceUtils.js +58 -0
  421. package/lib/utils/isomorphic/trace/versions/traceV3.js +16 -0
  422. package/lib/utils/isomorphic/trace/versions/traceV4.js +16 -0
  423. package/lib/utils/isomorphic/trace/versions/traceV5.js +16 -0
  424. package/lib/utils/isomorphic/trace/versions/traceV6.js +16 -0
  425. package/lib/utils/isomorphic/trace/versions/traceV7.js +16 -0
  426. package/lib/utils/isomorphic/trace/versions/traceV8.js +16 -0
  427. package/lib/utils/isomorphic/types.js +16 -0
  428. package/lib/utils/isomorphic/urlMatch.js +243 -0
  429. package/lib/utils/isomorphic/utilityScriptSerializers.js +262 -0
  430. package/lib/utils/isomorphic/yaml.js +84 -0
  431. package/lib/utils.js +113 -0
  432. package/lib/utilsBundle.js +91 -0
  433. package/lib/utilsBundleImpl/index.js +218 -0
  434. package/lib/utilsBundleImpl/xdg-open +1066 -0
  435. package/lib/vite/dashboard/assets/index-Bn2lDGZX.js +50 -0
  436. package/lib/vite/dashboard/assets/index-DDWrEWMc.css +1 -0
  437. package/lib/vite/dashboard/index.html +28 -0
  438. package/lib/vite/htmlReport/index.html +89 -0
  439. package/lib/vite/recorder/assets/codeMirrorModule-DYBRYzYX.css +1 -0
  440. package/lib/vite/recorder/assets/codeMirrorModule-RoSmqW0t.js +32 -0
  441. package/lib/vite/recorder/assets/codicon-DCmgc-ay.ttf +0 -0
  442. package/lib/vite/recorder/assets/index-CLrDthbi.js +193 -0
  443. package/lib/vite/recorder/assets/index-OFPIkgDs.css +1 -0
  444. package/lib/vite/recorder/index.html +29 -0
  445. package/lib/vite/recorder/playwright-logo.svg +9 -0
  446. package/lib/vite/traceViewer/assets/codeMirrorModule-Cigrr2OM.js +32 -0
  447. package/lib/vite/traceViewer/assets/defaultSettingsView-ConrJv9G.js +262 -0
  448. package/lib/vite/traceViewer/assets/xtermModule-CsJ4vdCR.js +9 -0
  449. package/lib/vite/traceViewer/codeMirrorModule.DYBRYzYX.css +1 -0
  450. package/lib/vite/traceViewer/codicon.DCmgc-ay.ttf +0 -0
  451. package/lib/vite/traceViewer/defaultSettingsView.B4dS75f0.css +1 -0
  452. package/lib/vite/traceViewer/index.CzXZzn5A.css +1 -0
  453. package/lib/vite/traceViewer/index.EVGp-u_4.js +2 -0
  454. package/lib/vite/traceViewer/index.html +43 -0
  455. package/lib/vite/traceViewer/manifest.webmanifest +16 -0
  456. package/lib/vite/traceViewer/playwright-logo.svg +9 -0
  457. package/lib/vite/traceViewer/snapshot.html +21 -0
  458. package/lib/vite/traceViewer/sw.bundle.js +5 -0
  459. package/lib/vite/traceViewer/uiMode.Bewj7-uD.js +6 -0
  460. package/lib/vite/traceViewer/uiMode.Btcz36p_.css +1 -0
  461. package/lib/vite/traceViewer/uiMode.html +17 -0
  462. package/lib/vite/traceViewer/xtermModule.DYP7pi_n.css +32 -0
  463. package/lib/zipBundle.js +34 -0
  464. package/lib/zipBundleImpl.js +5 -0
  465. package/package.json +46 -0
  466. package/types/protocol.d.ts +24365 -0
  467. package/types/structs.d.ts +45 -0
  468. package/types/types.d.ts +23498 -0
@@ -0,0 +1,3552 @@
1
+ microsoft/playwright-core
2
+
3
+ THIRD-PARTY SOFTWARE NOTICES AND INFORMATION
4
+
5
+ This project incorporates components from the projects listed below. The original copyright notices and the licenses under which Microsoft received such components are set forth below. Microsoft reserves all rights not expressly granted herein, whether by implication, estoppel or otherwise.
6
+
7
+ - @hono/node-server@1.19.11 (https://github.com/honojs/node-server)
8
+ - @modelcontextprotocol/sdk@1.26.0 (https://github.com/modelcontextprotocol/typescript-sdk)
9
+ - accepts@2.0.0 (https://github.com/jshttp/accepts)
10
+ - agent-base@7.1.4 (https://github.com/TooTallNate/proxy-agents)
11
+ - ajv-formats@3.0.1 (https://github.com/ajv-validator/ajv-formats)
12
+ - ajv@8.17.1 (https://github.com/ajv-validator/ajv)
13
+ - balanced-match@1.0.2 (https://github.com/juliangruber/balanced-match)
14
+ - body-parser@2.2.2 (https://github.com/expressjs/body-parser)
15
+ - brace-expansion@1.1.12 (https://github.com/juliangruber/brace-expansion)
16
+ - buffer-crc32@0.2.13 (https://github.com/brianloveswords/buffer-crc32)
17
+ - bytes@3.1.2 (https://github.com/visionmedia/bytes.js)
18
+ - call-bind-apply-helpers@1.0.2 (https://github.com/ljharb/call-bind-apply-helpers)
19
+ - call-bound@1.0.4 (https://github.com/ljharb/call-bound)
20
+ - codemirror@5.65.18 (https://github.com/codemirror/CodeMirror)
21
+ - colors@1.4.0 (https://github.com/Marak/colors.js)
22
+ - commander@13.1.0 (https://github.com/tj/commander.js)
23
+ - concat-map@0.0.1 (https://github.com/substack/node-concat-map)
24
+ - content-disposition@1.0.1 (https://github.com/jshttp/content-disposition)
25
+ - content-type@1.0.5 (https://github.com/jshttp/content-type)
26
+ - cookie-signature@1.2.2 (https://github.com/visionmedia/node-cookie-signature)
27
+ - cookie@0.7.2 (https://github.com/jshttp/cookie)
28
+ - cors@2.8.5 (https://github.com/expressjs/cors)
29
+ - cross-spawn@7.0.6 (https://github.com/moxystudio/node-cross-spawn)
30
+ - debug@4.3.4 (https://github.com/debug-js/debug)
31
+ - debug@4.4.0 (https://github.com/debug-js/debug)
32
+ - debug@4.4.3 (https://github.com/debug-js/debug)
33
+ - define-lazy-prop@2.0.0 (https://github.com/sindresorhus/define-lazy-prop)
34
+ - depd@2.0.0 (https://github.com/dougwilson/nodejs-depd)
35
+ - diff@7.0.0 (https://github.com/kpdecker/jsdiff)
36
+ - dotenv@16.4.5 (https://github.com/motdotla/dotenv)
37
+ - dunder-proto@1.0.1 (https://github.com/es-shims/dunder-proto)
38
+ - ee-first@1.1.1 (https://github.com/jonathanong/ee-first)
39
+ - encodeurl@2.0.0 (https://github.com/pillarjs/encodeurl)
40
+ - end-of-stream@1.4.4 (https://github.com/mafintosh/end-of-stream)
41
+ - es-define-property@1.0.1 (https://github.com/ljharb/es-define-property)
42
+ - es-errors@1.3.0 (https://github.com/ljharb/es-errors)
43
+ - es-object-atoms@1.1.1 (https://github.com/ljharb/es-object-atoms)
44
+ - escape-html@1.0.3 (https://github.com/component/escape-html)
45
+ - etag@1.8.1 (https://github.com/jshttp/etag)
46
+ - eventsource-parser@3.0.3 (https://github.com/rexxars/eventsource-parser)
47
+ - eventsource@3.0.7 (git://git@github.com/EventSource/eventsource)
48
+ - express-rate-limit@8.2.1 (https://github.com/express-rate-limit/express-rate-limit)
49
+ - express@5.2.1 (https://github.com/expressjs/express)
50
+ - fast-deep-equal@3.1.3 (https://github.com/epoberezkin/fast-deep-equal)
51
+ - fast-uri@3.1.0 (https://github.com/fastify/fast-uri)
52
+ - finalhandler@2.1.1 (https://github.com/pillarjs/finalhandler)
53
+ - forwarded@0.2.0 (https://github.com/jshttp/forwarded)
54
+ - fresh@2.0.0 (https://github.com/jshttp/fresh)
55
+ - function-bind@1.1.2 (https://github.com/Raynos/function-bind)
56
+ - get-intrinsic@1.3.0 (https://github.com/ljharb/get-intrinsic)
57
+ - get-proto@1.0.1 (https://github.com/ljharb/get-proto)
58
+ - get-stream@5.2.0 (https://github.com/sindresorhus/get-stream)
59
+ - gopd@1.2.0 (https://github.com/ljharb/gopd)
60
+ - graceful-fs@4.2.10 (https://github.com/isaacs/node-graceful-fs)
61
+ - has-symbols@1.1.0 (https://github.com/inspect-js/has-symbols)
62
+ - hasown@2.0.2 (https://github.com/inspect-js/hasOwn)
63
+ - hono@4.12.7 (https://github.com/honojs/hono)
64
+ - http-errors@2.0.1 (https://github.com/jshttp/http-errors)
65
+ - https-proxy-agent@7.0.6 (https://github.com/TooTallNate/proxy-agents)
66
+ - iconv-lite@0.7.2 (https://github.com/pillarjs/iconv-lite)
67
+ - inherits@2.0.4 (https://github.com/isaacs/inherits)
68
+ - ini@6.0.0 (https://github.com/npm/ini)
69
+ - ip-address@10.0.1 (https://github.com/beaugunderson/ip-address)
70
+ - ip-address@9.0.5 (https://github.com/beaugunderson/ip-address)
71
+ - ipaddr.js@1.9.1 (https://github.com/whitequark/ipaddr.js)
72
+ - is-docker@2.2.1 (https://github.com/sindresorhus/is-docker)
73
+ - is-promise@4.0.0 (https://github.com/then/is-promise)
74
+ - is-wsl@2.2.0 (https://github.com/sindresorhus/is-wsl)
75
+ - isexe@2.0.0 (https://github.com/isaacs/isexe)
76
+ - jose@6.1.3 (https://github.com/panva/jose)
77
+ - jpeg-js@0.4.4 (https://github.com/eugeneware/jpeg-js)
78
+ - jsbn@1.1.0 (https://github.com/andyperlitch/jsbn)
79
+ - json-schema-traverse@1.0.0 (https://github.com/epoberezkin/json-schema-traverse)
80
+ - json-schema-typed@8.0.2 (https://github.com/RemyRylan/json-schema-typed)
81
+ - math-intrinsics@1.1.0 (https://github.com/es-shims/math-intrinsics)
82
+ - media-typer@1.1.0 (https://github.com/jshttp/media-typer)
83
+ - merge-descriptors@2.0.0 (https://github.com/sindresorhus/merge-descriptors)
84
+ - mime-db@1.54.0 (https://github.com/jshttp/mime-db)
85
+ - mime-types@3.0.2 (https://github.com/jshttp/mime-types)
86
+ - mime@3.0.0 (https://github.com/broofa/mime)
87
+ - minimatch@3.1.4 (https://github.com/isaacs/minimatch)
88
+ - ms@2.1.2 (https://github.com/zeit/ms)
89
+ - ms@2.1.3 (https://github.com/vercel/ms)
90
+ - negotiator@1.0.0 (https://github.com/jshttp/negotiator)
91
+ - object-assign@4.1.1 (https://github.com/sindresorhus/object-assign)
92
+ - object-inspect@1.13.4 (https://github.com/inspect-js/object-inspect)
93
+ - on-finished@2.4.1 (https://github.com/jshttp/on-finished)
94
+ - once@1.4.0 (https://github.com/isaacs/once)
95
+ - open@8.4.0 (https://github.com/sindresorhus/open)
96
+ - parseurl@1.3.3 (https://github.com/pillarjs/parseurl)
97
+ - path-key@3.1.1 (https://github.com/sindresorhus/path-key)
98
+ - path-to-regexp@8.3.0 (https://github.com/pillarjs/path-to-regexp)
99
+ - pend@1.2.0 (https://github.com/andrewrk/node-pend)
100
+ - pkce-challenge@5.0.0 (https://github.com/crouchcd/pkce-challenge)
101
+ - pngjs@6.0.0 (https://github.com/lukeapage/pngjs)
102
+ - progress@2.0.3 (https://github.com/visionmedia/node-progress)
103
+ - proxy-addr@2.0.7 (https://github.com/jshttp/proxy-addr)
104
+ - proxy-from-env@2.0.0 (https://github.com/Rob--W/proxy-from-env)
105
+ - pump@3.0.2 (https://github.com/mafintosh/pump)
106
+ - qs@6.14.1 (https://github.com/ljharb/qs)
107
+ - range-parser@1.2.1 (https://github.com/jshttp/range-parser)
108
+ - raw-body@3.0.2 (https://github.com/stream-utils/raw-body)
109
+ - require-from-string@2.0.2 (https://github.com/floatdrop/require-from-string)
110
+ - retry@0.12.0 (https://github.com/tim-kos/node-retry)
111
+ - router@2.2.0 (https://github.com/pillarjs/router)
112
+ - safer-buffer@2.1.2 (https://github.com/ChALkeR/safer-buffer)
113
+ - send@1.2.1 (https://github.com/pillarjs/send)
114
+ - serve-static@2.2.1 (https://github.com/expressjs/serve-static)
115
+ - setprototypeof@1.2.0 (https://github.com/wesleytodd/setprototypeof)
116
+ - shebang-command@2.0.0 (https://github.com/kevva/shebang-command)
117
+ - shebang-regex@3.0.0 (https://github.com/sindresorhus/shebang-regex)
118
+ - side-channel-list@1.0.0 (https://github.com/ljharb/side-channel-list)
119
+ - side-channel-map@1.0.1 (https://github.com/ljharb/side-channel-map)
120
+ - side-channel-weakmap@1.0.2 (https://github.com/ljharb/side-channel-weakmap)
121
+ - side-channel@1.1.0 (https://github.com/ljharb/side-channel)
122
+ - signal-exit@3.0.7 (https://github.com/tapjs/signal-exit)
123
+ - smart-buffer@4.2.0 (https://github.com/JoshGlazebrook/smart-buffer)
124
+ - socks-proxy-agent@8.0.5 (https://github.com/TooTallNate/proxy-agents)
125
+ - socks@2.8.3 (https://github.com/JoshGlazebrook/socks)
126
+ - sprintf-js@1.1.3 (https://github.com/alexei/sprintf.js)
127
+ - statuses@2.0.2 (https://github.com/jshttp/statuses)
128
+ - toidentifier@1.0.1 (https://github.com/component/toidentifier)
129
+ - type-is@2.0.1 (https://github.com/jshttp/type-is)
130
+ - unpipe@1.0.0 (https://github.com/stream-utils/unpipe)
131
+ - vary@1.1.2 (https://github.com/jshttp/vary)
132
+ - which@2.0.2 (https://github.com/isaacs/node-which)
133
+ - wrappy@1.0.2 (https://github.com/npm/wrappy)
134
+ - ws@8.17.1 (https://github.com/websockets/ws)
135
+ - yaml@2.6.0 (https://github.com/eemeli/yaml)
136
+ - yauzl@3.2.0 (https://github.com/thejoshwolfe/yauzl)
137
+ - yazl@2.5.1 (https://github.com/thejoshwolfe/yazl)
138
+ - zod-to-json-schema@3.25.1 (https://github.com/StefanTerdell/zod-to-json-schema)
139
+ - zod@4.3.5 (https://github.com/colinhacks/zod)
140
+
141
+ %% @hono/node-server@1.19.11 NOTICES AND INFORMATION BEGIN HERE
142
+ =========================================
143
+ MIT License
144
+
145
+ Copyright (c) 2022 - present, Yusuke Wada and Hono contributors
146
+
147
+ Permission is hereby granted, free of charge, to any person obtaining a copy
148
+ of this software and associated documentation files (the "Software"), to deal
149
+ in the Software without restriction, including without limitation the rights
150
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
151
+ copies of the Software, and to permit persons to whom the Software is
152
+ furnished to do so, subject to the following conditions:
153
+
154
+ The above copyright notice and this permission notice shall be included in all
155
+ copies or substantial portions of the Software.
156
+
157
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
158
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
159
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
160
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
161
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
162
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
163
+ SOFTWARE.
164
+ =========================================
165
+ END OF @hono/node-server@1.19.11 AND INFORMATION
166
+
167
+ %% @modelcontextprotocol/sdk@1.26.0 NOTICES AND INFORMATION BEGIN HERE
168
+ =========================================
169
+ MIT License
170
+
171
+ Copyright (c) 2024 Anthropic, PBC
172
+
173
+ Permission is hereby granted, free of charge, to any person obtaining a copy
174
+ of this software and associated documentation files (the "Software"), to deal
175
+ in the Software without restriction, including without limitation the rights
176
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
177
+ copies of the Software, and to permit persons to whom the Software is
178
+ furnished to do so, subject to the following conditions:
179
+
180
+ The above copyright notice and this permission notice shall be included in all
181
+ copies or substantial portions of the Software.
182
+
183
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
184
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
185
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
186
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
187
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
188
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
189
+ SOFTWARE.
190
+ =========================================
191
+ END OF @modelcontextprotocol/sdk@1.26.0 AND INFORMATION
192
+
193
+ %% accepts@2.0.0 NOTICES AND INFORMATION BEGIN HERE
194
+ =========================================
195
+ (The MIT License)
196
+
197
+ Copyright (c) 2014 Jonathan Ong <me@jongleberry.com>
198
+ Copyright (c) 2015 Douglas Christopher Wilson <doug@somethingdoug.com>
199
+
200
+ Permission is hereby granted, free of charge, to any person obtaining
201
+ a copy of this software and associated documentation files (the
202
+ 'Software'), to deal in the Software without restriction, including
203
+ without limitation the rights to use, copy, modify, merge, publish,
204
+ distribute, sublicense, and/or sell copies of the Software, and to
205
+ permit persons to whom the Software is furnished to do so, subject to
206
+ the following conditions:
207
+
208
+ The above copyright notice and this permission notice shall be
209
+ included in all copies or substantial portions of the Software.
210
+
211
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
212
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
213
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
214
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
215
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
216
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
217
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
218
+ =========================================
219
+ END OF accepts@2.0.0 AND INFORMATION
220
+
221
+ %% agent-base@7.1.4 NOTICES AND INFORMATION BEGIN HERE
222
+ =========================================
223
+ (The MIT License)
224
+
225
+ Copyright (c) 2013 Nathan Rajlich <nathan@tootallnate.net>
226
+
227
+ Permission is hereby granted, free of charge, to any person obtaining
228
+ a copy of this software and associated documentation files (the
229
+ 'Software'), to deal in the Software without restriction, including
230
+ without limitation the rights to use, copy, modify, merge, publish,
231
+ distribute, sublicense, and/or sell copies of the Software, and to
232
+ permit persons to whom the Software is furnished to do so, subject to
233
+ the following conditions:
234
+
235
+ The above copyright notice and this permission notice shall be
236
+ included in all copies or substantial portions of the Software.
237
+
238
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
239
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
240
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
241
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
242
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
243
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
244
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
245
+ =========================================
246
+ END OF agent-base@7.1.4 AND INFORMATION
247
+
248
+ %% ajv-formats@3.0.1 NOTICES AND INFORMATION BEGIN HERE
249
+ =========================================
250
+ MIT License
251
+
252
+ Copyright (c) 2020 Evgeny Poberezkin
253
+
254
+ Permission is hereby granted, free of charge, to any person obtaining a copy
255
+ of this software and associated documentation files (the "Software"), to deal
256
+ in the Software without restriction, including without limitation the rights
257
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
258
+ copies of the Software, and to permit persons to whom the Software is
259
+ furnished to do so, subject to the following conditions:
260
+
261
+ The above copyright notice and this permission notice shall be included in all
262
+ copies or substantial portions of the Software.
263
+
264
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
265
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
266
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
267
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
268
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
269
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
270
+ SOFTWARE.
271
+ =========================================
272
+ END OF ajv-formats@3.0.1 AND INFORMATION
273
+
274
+ %% ajv@8.17.1 NOTICES AND INFORMATION BEGIN HERE
275
+ =========================================
276
+ The MIT License (MIT)
277
+
278
+ Copyright (c) 2015-2021 Evgeny Poberezkin
279
+
280
+ Permission is hereby granted, free of charge, to any person obtaining a copy
281
+ of this software and associated documentation files (the "Software"), to deal
282
+ in the Software without restriction, including without limitation the rights
283
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
284
+ copies of the Software, and to permit persons to whom the Software is
285
+ furnished to do so, subject to the following conditions:
286
+
287
+ The above copyright notice and this permission notice shall be included in all
288
+ copies or substantial portions of the Software.
289
+
290
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
291
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
292
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
293
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
294
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
295
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
296
+ SOFTWARE.
297
+ =========================================
298
+ END OF ajv@8.17.1 AND INFORMATION
299
+
300
+ %% balanced-match@1.0.2 NOTICES AND INFORMATION BEGIN HERE
301
+ =========================================
302
+ (MIT)
303
+
304
+ Copyright (c) 2013 Julian Gruber &lt;julian@juliangruber.com&gt;
305
+
306
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
307
+ this software and associated documentation files (the "Software"), to deal in
308
+ the Software without restriction, including without limitation the rights to
309
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
310
+ of the Software, and to permit persons to whom the Software is furnished to do
311
+ so, subject to the following conditions:
312
+
313
+ The above copyright notice and this permission notice shall be included in all
314
+ copies or substantial portions of the Software.
315
+
316
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
317
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
318
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
319
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
320
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
321
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
322
+ SOFTWARE.
323
+ =========================================
324
+ END OF balanced-match@1.0.2 AND INFORMATION
325
+
326
+ %% body-parser@2.2.2 NOTICES AND INFORMATION BEGIN HERE
327
+ =========================================
328
+ (The MIT License)
329
+
330
+ Copyright (c) 2014 Jonathan Ong <me@jongleberry.com>
331
+ Copyright (c) 2014-2015 Douglas Christopher Wilson <doug@somethingdoug.com>
332
+
333
+ Permission is hereby granted, free of charge, to any person obtaining
334
+ a copy of this software and associated documentation files (the
335
+ 'Software'), to deal in the Software without restriction, including
336
+ without limitation the rights to use, copy, modify, merge, publish,
337
+ distribute, sublicense, and/or sell copies of the Software, and to
338
+ permit persons to whom the Software is furnished to do so, subject to
339
+ the following conditions:
340
+
341
+ The above copyright notice and this permission notice shall be
342
+ included in all copies or substantial portions of the Software.
343
+
344
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
345
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
346
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
347
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
348
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
349
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
350
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
351
+ =========================================
352
+ END OF body-parser@2.2.2 AND INFORMATION
353
+
354
+ %% brace-expansion@1.1.12 NOTICES AND INFORMATION BEGIN HERE
355
+ =========================================
356
+ MIT License
357
+
358
+ Copyright (c) 2013 Julian Gruber <julian@juliangruber.com>
359
+
360
+ Permission is hereby granted, free of charge, to any person obtaining a copy
361
+ of this software and associated documentation files (the "Software"), to deal
362
+ in the Software without restriction, including without limitation the rights
363
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
364
+ copies of the Software, and to permit persons to whom the Software is
365
+ furnished to do so, subject to the following conditions:
366
+
367
+ The above copyright notice and this permission notice shall be included in all
368
+ copies or substantial portions of the Software.
369
+
370
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
371
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
372
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
373
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
374
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
375
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
376
+ SOFTWARE.
377
+ =========================================
378
+ END OF brace-expansion@1.1.12 AND INFORMATION
379
+
380
+ %% buffer-crc32@0.2.13 NOTICES AND INFORMATION BEGIN HERE
381
+ =========================================
382
+ The MIT License
383
+
384
+ Copyright (c) 2013 Brian J. Brennan
385
+
386
+ Permission is hereby granted, free of charge, to any person obtaining a copy
387
+ of this software and associated documentation files (the "Software"), to deal in
388
+ the Software without restriction, including without limitation the rights to use,
389
+ copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the
390
+ Software, and to permit persons to whom the Software is furnished to do so,
391
+ subject to the following conditions:
392
+
393
+ The above copyright notice and this permission notice shall be included in all
394
+ copies or substantial portions of the Software.
395
+
396
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
397
+ INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
398
+ PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE
399
+ FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
400
+ ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
401
+ =========================================
402
+ END OF buffer-crc32@0.2.13 AND INFORMATION
403
+
404
+ %% bytes@3.1.2 NOTICES AND INFORMATION BEGIN HERE
405
+ =========================================
406
+ (The MIT License)
407
+
408
+ Copyright (c) 2012-2014 TJ Holowaychuk <tj@vision-media.ca>
409
+ Copyright (c) 2015 Jed Watson <jed.watson@me.com>
410
+
411
+ Permission is hereby granted, free of charge, to any person obtaining
412
+ a copy of this software and associated documentation files (the
413
+ 'Software'), to deal in the Software without restriction, including
414
+ without limitation the rights to use, copy, modify, merge, publish,
415
+ distribute, sublicense, and/or sell copies of the Software, and to
416
+ permit persons to whom the Software is furnished to do so, subject to
417
+ the following conditions:
418
+
419
+ The above copyright notice and this permission notice shall be
420
+ included in all copies or substantial portions of the Software.
421
+
422
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
423
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
424
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
425
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
426
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
427
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
428
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
429
+ =========================================
430
+ END OF bytes@3.1.2 AND INFORMATION
431
+
432
+ %% call-bind-apply-helpers@1.0.2 NOTICES AND INFORMATION BEGIN HERE
433
+ =========================================
434
+ MIT License
435
+
436
+ Copyright (c) 2024 Jordan Harband
437
+
438
+ Permission is hereby granted, free of charge, to any person obtaining a copy
439
+ of this software and associated documentation files (the "Software"), to deal
440
+ in the Software without restriction, including without limitation the rights
441
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
442
+ copies of the Software, and to permit persons to whom the Software is
443
+ furnished to do so, subject to the following conditions:
444
+
445
+ The above copyright notice and this permission notice shall be included in all
446
+ copies or substantial portions of the Software.
447
+
448
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
449
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
450
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
451
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
452
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
453
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
454
+ SOFTWARE.
455
+ =========================================
456
+ END OF call-bind-apply-helpers@1.0.2 AND INFORMATION
457
+
458
+ %% call-bound@1.0.4 NOTICES AND INFORMATION BEGIN HERE
459
+ =========================================
460
+ MIT License
461
+
462
+ Copyright (c) 2024 Jordan Harband
463
+
464
+ Permission is hereby granted, free of charge, to any person obtaining a copy
465
+ of this software and associated documentation files (the "Software"), to deal
466
+ in the Software without restriction, including without limitation the rights
467
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
468
+ copies of the Software, and to permit persons to whom the Software is
469
+ furnished to do so, subject to the following conditions:
470
+
471
+ The above copyright notice and this permission notice shall be included in all
472
+ copies or substantial portions of the Software.
473
+
474
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
475
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
476
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
477
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
478
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
479
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
480
+ SOFTWARE.
481
+ =========================================
482
+ END OF call-bound@1.0.4 AND INFORMATION
483
+
484
+ %% codemirror@5.65.18 NOTICES AND INFORMATION BEGIN HERE
485
+ =========================================
486
+ MIT License
487
+
488
+ Copyright (C) 2017 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
489
+
490
+ Permission is hereby granted, free of charge, to any person obtaining a copy
491
+ of this software and associated documentation files (the "Software"), to deal
492
+ in the Software without restriction, including without limitation the rights
493
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
494
+ copies of the Software, and to permit persons to whom the Software is
495
+ furnished to do so, subject to the following conditions:
496
+
497
+ The above copyright notice and this permission notice shall be included in
498
+ all copies or substantial portions of the Software.
499
+
500
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
501
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
502
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
503
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
504
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
505
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
506
+ THE SOFTWARE.
507
+ =========================================
508
+ END OF codemirror@5.65.18 AND INFORMATION
509
+
510
+ %% colors@1.4.0 NOTICES AND INFORMATION BEGIN HERE
511
+ =========================================
512
+ MIT License
513
+
514
+ Original Library
515
+ - Copyright (c) Marak Squires
516
+
517
+ Additional Functionality
518
+ - Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
519
+
520
+ Permission is hereby granted, free of charge, to any person obtaining a copy
521
+ of this software and associated documentation files (the "Software"), to deal
522
+ in the Software without restriction, including without limitation the rights
523
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
524
+ copies of the Software, and to permit persons to whom the Software is
525
+ furnished to do so, subject to the following conditions:
526
+
527
+ The above copyright notice and this permission notice shall be included in
528
+ all copies or substantial portions of the Software.
529
+
530
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
531
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
532
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
533
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
534
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
535
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
536
+ THE SOFTWARE.
537
+ =========================================
538
+ END OF colors@1.4.0 AND INFORMATION
539
+
540
+ %% commander@13.1.0 NOTICES AND INFORMATION BEGIN HERE
541
+ =========================================
542
+ (The MIT License)
543
+
544
+ Copyright (c) 2011 TJ Holowaychuk <tj@vision-media.ca>
545
+
546
+ Permission is hereby granted, free of charge, to any person obtaining
547
+ a copy of this software and associated documentation files (the
548
+ 'Software'), to deal in the Software without restriction, including
549
+ without limitation the rights to use, copy, modify, merge, publish,
550
+ distribute, sublicense, and/or sell copies of the Software, and to
551
+ permit persons to whom the Software is furnished to do so, subject to
552
+ the following conditions:
553
+
554
+ The above copyright notice and this permission notice shall be
555
+ included in all copies or substantial portions of the Software.
556
+
557
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
558
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
559
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
560
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
561
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
562
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
563
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
564
+ =========================================
565
+ END OF commander@13.1.0 AND INFORMATION
566
+
567
+ %% concat-map@0.0.1 NOTICES AND INFORMATION BEGIN HERE
568
+ =========================================
569
+ This software is released under the MIT license:
570
+
571
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
572
+ this software and associated documentation files (the "Software"), to deal in
573
+ the Software without restriction, including without limitation the rights to
574
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
575
+ the Software, and to permit persons to whom the Software is furnished to do so,
576
+ subject to the following conditions:
577
+
578
+ The above copyright notice and this permission notice shall be included in all
579
+ copies or substantial portions of the Software.
580
+
581
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
582
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
583
+ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
584
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
585
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
586
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
587
+ =========================================
588
+ END OF concat-map@0.0.1 AND INFORMATION
589
+
590
+ %% content-disposition@1.0.1 NOTICES AND INFORMATION BEGIN HERE
591
+ =========================================
592
+ (The MIT License)
593
+
594
+ Copyright (c) 2014-2017 Douglas Christopher Wilson
595
+
596
+ Permission is hereby granted, free of charge, to any person obtaining
597
+ a copy of this software and associated documentation files (the
598
+ 'Software'), to deal in the Software without restriction, including
599
+ without limitation the rights to use, copy, modify, merge, publish,
600
+ distribute, sublicense, and/or sell copies of the Software, and to
601
+ permit persons to whom the Software is furnished to do so, subject to
602
+ the following conditions:
603
+
604
+ The above copyright notice and this permission notice shall be
605
+ included in all copies or substantial portions of the Software.
606
+
607
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
608
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
609
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
610
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
611
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
612
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
613
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
614
+ =========================================
615
+ END OF content-disposition@1.0.1 AND INFORMATION
616
+
617
+ %% content-type@1.0.5 NOTICES AND INFORMATION BEGIN HERE
618
+ =========================================
619
+ (The MIT License)
620
+
621
+ Copyright (c) 2015 Douglas Christopher Wilson
622
+
623
+ Permission is hereby granted, free of charge, to any person obtaining
624
+ a copy of this software and associated documentation files (the
625
+ 'Software'), to deal in the Software without restriction, including
626
+ without limitation the rights to use, copy, modify, merge, publish,
627
+ distribute, sublicense, and/or sell copies of the Software, and to
628
+ permit persons to whom the Software is furnished to do so, subject to
629
+ the following conditions:
630
+
631
+ The above copyright notice and this permission notice shall be
632
+ included in all copies or substantial portions of the Software.
633
+
634
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
635
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
636
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
637
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
638
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
639
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
640
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
641
+ =========================================
642
+ END OF content-type@1.0.5 AND INFORMATION
643
+
644
+ %% cookie-signature@1.2.2 NOTICES AND INFORMATION BEGIN HERE
645
+ =========================================
646
+ (The MIT License)
647
+
648
+ Copyright (c) 2012–2024 LearnBoost <tj@learnboost.com> and other contributors;
649
+
650
+ Permission is hereby granted, free of charge, to any person obtaining
651
+ a copy of this software and associated documentation files (the
652
+ 'Software'), to deal in the Software without restriction, including
653
+ without limitation the rights to use, copy, modify, merge, publish,
654
+ distribute, sublicense, and/or sell copies of the Software, and to
655
+ permit persons to whom the Software is furnished to do so, subject to
656
+ the following conditions:
657
+
658
+ The above copyright notice and this permission notice shall be
659
+ included in all copies or substantial portions of the Software.
660
+
661
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
662
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
663
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
664
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
665
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
666
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
667
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
668
+ =========================================
669
+ END OF cookie-signature@1.2.2 AND INFORMATION
670
+
671
+ %% cookie@0.7.2 NOTICES AND INFORMATION BEGIN HERE
672
+ =========================================
673
+ (The MIT License)
674
+
675
+ Copyright (c) 2012-2014 Roman Shtylman <shtylman@gmail.com>
676
+ Copyright (c) 2015 Douglas Christopher Wilson <doug@somethingdoug.com>
677
+
678
+ Permission is hereby granted, free of charge, to any person obtaining
679
+ a copy of this software and associated documentation files (the
680
+ 'Software'), to deal in the Software without restriction, including
681
+ without limitation the rights to use, copy, modify, merge, publish,
682
+ distribute, sublicense, and/or sell copies of the Software, and to
683
+ permit persons to whom the Software is furnished to do so, subject to
684
+ the following conditions:
685
+
686
+ The above copyright notice and this permission notice shall be
687
+ included in all copies or substantial portions of the Software.
688
+
689
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
690
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
691
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
692
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
693
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
694
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
695
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
696
+ =========================================
697
+ END OF cookie@0.7.2 AND INFORMATION
698
+
699
+ %% cors@2.8.5 NOTICES AND INFORMATION BEGIN HERE
700
+ =========================================
701
+ (The MIT License)
702
+
703
+ Copyright (c) 2013 Troy Goode <troygoode@gmail.com>
704
+
705
+ Permission is hereby granted, free of charge, to any person obtaining
706
+ a copy of this software and associated documentation files (the
707
+ 'Software'), to deal in the Software without restriction, including
708
+ without limitation the rights to use, copy, modify, merge, publish,
709
+ distribute, sublicense, and/or sell copies of the Software, and to
710
+ permit persons to whom the Software is furnished to do so, subject to
711
+ the following conditions:
712
+
713
+ The above copyright notice and this permission notice shall be
714
+ included in all copies or substantial portions of the Software.
715
+
716
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
717
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
718
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
719
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
720
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
721
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
722
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
723
+ =========================================
724
+ END OF cors@2.8.5 AND INFORMATION
725
+
726
+ %% cross-spawn@7.0.6 NOTICES AND INFORMATION BEGIN HERE
727
+ =========================================
728
+ The MIT License (MIT)
729
+
730
+ Copyright (c) 2018 Made With MOXY Lda <hello@moxy.studio>
731
+
732
+ Permission is hereby granted, free of charge, to any person obtaining a copy
733
+ of this software and associated documentation files (the "Software"), to deal
734
+ in the Software without restriction, including without limitation the rights
735
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
736
+ copies of the Software, and to permit persons to whom the Software is
737
+ furnished to do so, subject to the following conditions:
738
+
739
+ The above copyright notice and this permission notice shall be included in
740
+ all copies or substantial portions of the Software.
741
+
742
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
743
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
744
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
745
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
746
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
747
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
748
+ THE SOFTWARE.
749
+ =========================================
750
+ END OF cross-spawn@7.0.6 AND INFORMATION
751
+
752
+ %% debug@4.3.4 NOTICES AND INFORMATION BEGIN HERE
753
+ =========================================
754
+ (The MIT License)
755
+
756
+ Copyright (c) 2014-2017 TJ Holowaychuk <tj@vision-media.ca>
757
+ Copyright (c) 2018-2021 Josh Junon
758
+
759
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software
760
+ and associated documentation files (the 'Software'), to deal in the Software without restriction,
761
+ including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,
762
+ and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,
763
+ subject to the following conditions:
764
+
765
+ The above copyright notice and this permission notice shall be included in all copies or substantial
766
+ portions of the Software.
767
+
768
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
769
+ LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
770
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
771
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
772
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
773
+ =========================================
774
+ END OF debug@4.3.4 AND INFORMATION
775
+
776
+ %% debug@4.4.0 NOTICES AND INFORMATION BEGIN HERE
777
+ =========================================
778
+ (The MIT License)
779
+
780
+ Copyright (c) 2014-2017 TJ Holowaychuk <tj@vision-media.ca>
781
+ Copyright (c) 2018-2021 Josh Junon
782
+
783
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software
784
+ and associated documentation files (the 'Software'), to deal in the Software without restriction,
785
+ including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,
786
+ and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,
787
+ subject to the following conditions:
788
+
789
+ The above copyright notice and this permission notice shall be included in all copies or substantial
790
+ portions of the Software.
791
+
792
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
793
+ LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
794
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
795
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
796
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
797
+ =========================================
798
+ END OF debug@4.4.0 AND INFORMATION
799
+
800
+ %% debug@4.4.3 NOTICES AND INFORMATION BEGIN HERE
801
+ =========================================
802
+ (The MIT License)
803
+
804
+ Copyright (c) 2014-2017 TJ Holowaychuk <tj@vision-media.ca>
805
+ Copyright (c) 2018-2021 Josh Junon
806
+
807
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software
808
+ and associated documentation files (the 'Software'), to deal in the Software without restriction,
809
+ including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,
810
+ and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,
811
+ subject to the following conditions:
812
+
813
+ The above copyright notice and this permission notice shall be included in all copies or substantial
814
+ portions of the Software.
815
+
816
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
817
+ LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
818
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
819
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
820
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
821
+ =========================================
822
+ END OF debug@4.4.3 AND INFORMATION
823
+
824
+ %% define-lazy-prop@2.0.0 NOTICES AND INFORMATION BEGIN HERE
825
+ =========================================
826
+ MIT License
827
+
828
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
829
+
830
+ 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:
831
+
832
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
833
+
834
+ 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.
835
+ =========================================
836
+ END OF define-lazy-prop@2.0.0 AND INFORMATION
837
+
838
+ %% depd@2.0.0 NOTICES AND INFORMATION BEGIN HERE
839
+ =========================================
840
+ (The MIT License)
841
+
842
+ Copyright (c) 2014-2018 Douglas Christopher Wilson
843
+
844
+ Permission is hereby granted, free of charge, to any person obtaining
845
+ a copy of this software and associated documentation files (the
846
+ 'Software'), to deal in the Software without restriction, including
847
+ without limitation the rights to use, copy, modify, merge, publish,
848
+ distribute, sublicense, and/or sell copies of the Software, and to
849
+ permit persons to whom the Software is furnished to do so, subject to
850
+ the following conditions:
851
+
852
+ The above copyright notice and this permission notice shall be
853
+ included in all copies or substantial portions of the Software.
854
+
855
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
856
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
857
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
858
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
859
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
860
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
861
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
862
+ =========================================
863
+ END OF depd@2.0.0 AND INFORMATION
864
+
865
+ %% diff@7.0.0 NOTICES AND INFORMATION BEGIN HERE
866
+ =========================================
867
+ BSD 3-Clause License
868
+
869
+ Copyright (c) 2009-2015, Kevin Decker <kpdecker@gmail.com>
870
+ All rights reserved.
871
+
872
+ Redistribution and use in source and binary forms, with or without
873
+ modification, are permitted provided that the following conditions are met:
874
+
875
+ 1. Redistributions of source code must retain the above copyright notice, this
876
+ list of conditions and the following disclaimer.
877
+
878
+ 2. Redistributions in binary form must reproduce the above copyright notice,
879
+ this list of conditions and the following disclaimer in the documentation
880
+ and/or other materials provided with the distribution.
881
+
882
+ 3. Neither the name of the copyright holder nor the names of its
883
+ contributors may be used to endorse or promote products derived from
884
+ this software without specific prior written permission.
885
+
886
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
887
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
888
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
889
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
890
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
891
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
892
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
893
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
894
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
895
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
896
+ =========================================
897
+ END OF diff@7.0.0 AND INFORMATION
898
+
899
+ %% dotenv@16.4.5 NOTICES AND INFORMATION BEGIN HERE
900
+ =========================================
901
+ Copyright (c) 2015, Scott Motte
902
+ All rights reserved.
903
+
904
+ Redistribution and use in source and binary forms, with or without
905
+ modification, are permitted provided that the following conditions are met:
906
+
907
+ * Redistributions of source code must retain the above copyright notice, this
908
+ list of conditions and the following disclaimer.
909
+
910
+ * Redistributions in binary form must reproduce the above copyright notice,
911
+ this list of conditions and the following disclaimer in the documentation
912
+ and/or other materials provided with the distribution.
913
+
914
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
915
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
916
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
917
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
918
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
919
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
920
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
921
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
922
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
923
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
924
+ =========================================
925
+ END OF dotenv@16.4.5 AND INFORMATION
926
+
927
+ %% dunder-proto@1.0.1 NOTICES AND INFORMATION BEGIN HERE
928
+ =========================================
929
+ MIT License
930
+
931
+ Copyright (c) 2024 ECMAScript Shims
932
+
933
+ Permission is hereby granted, free of charge, to any person obtaining a copy
934
+ of this software and associated documentation files (the "Software"), to deal
935
+ in the Software without restriction, including without limitation the rights
936
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
937
+ copies of the Software, and to permit persons to whom the Software is
938
+ furnished to do so, subject to the following conditions:
939
+
940
+ The above copyright notice and this permission notice shall be included in all
941
+ copies or substantial portions of the Software.
942
+
943
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
944
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
945
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
946
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
947
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
948
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
949
+ SOFTWARE.
950
+ =========================================
951
+ END OF dunder-proto@1.0.1 AND INFORMATION
952
+
953
+ %% ee-first@1.1.1 NOTICES AND INFORMATION BEGIN HERE
954
+ =========================================
955
+ The MIT License (MIT)
956
+
957
+ Copyright (c) 2014 Jonathan Ong me@jongleberry.com
958
+
959
+ Permission is hereby granted, free of charge, to any person obtaining a copy
960
+ of this software and associated documentation files (the "Software"), to deal
961
+ in the Software without restriction, including without limitation the rights
962
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
963
+ copies of the Software, and to permit persons to whom the Software is
964
+ furnished to do so, subject to the following conditions:
965
+
966
+ The above copyright notice and this permission notice shall be included in
967
+ all copies or substantial portions of the Software.
968
+
969
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
970
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
971
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
972
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
973
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
974
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
975
+ THE SOFTWARE.
976
+ =========================================
977
+ END OF ee-first@1.1.1 AND INFORMATION
978
+
979
+ %% encodeurl@2.0.0 NOTICES AND INFORMATION BEGIN HERE
980
+ =========================================
981
+ (The MIT License)
982
+
983
+ Copyright (c) 2016 Douglas Christopher Wilson
984
+
985
+ Permission is hereby granted, free of charge, to any person obtaining
986
+ a copy of this software and associated documentation files (the
987
+ 'Software'), to deal in the Software without restriction, including
988
+ without limitation the rights to use, copy, modify, merge, publish,
989
+ distribute, sublicense, and/or sell copies of the Software, and to
990
+ permit persons to whom the Software is furnished to do so, subject to
991
+ the following conditions:
992
+
993
+ The above copyright notice and this permission notice shall be
994
+ included in all copies or substantial portions of the Software.
995
+
996
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
997
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
998
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
999
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
1000
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
1001
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1002
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1003
+ =========================================
1004
+ END OF encodeurl@2.0.0 AND INFORMATION
1005
+
1006
+ %% end-of-stream@1.4.4 NOTICES AND INFORMATION BEGIN HERE
1007
+ =========================================
1008
+ The MIT License (MIT)
1009
+
1010
+ Copyright (c) 2014 Mathias Buus
1011
+
1012
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1013
+ of this software and associated documentation files (the "Software"), to deal
1014
+ in the Software without restriction, including without limitation the rights
1015
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1016
+ copies of the Software, and to permit persons to whom the Software is
1017
+ furnished to do so, subject to the following conditions:
1018
+
1019
+ The above copyright notice and this permission notice shall be included in
1020
+ all copies or substantial portions of the Software.
1021
+
1022
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1023
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1024
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1025
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1026
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1027
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1028
+ THE SOFTWARE.
1029
+ =========================================
1030
+ END OF end-of-stream@1.4.4 AND INFORMATION
1031
+
1032
+ %% es-define-property@1.0.1 NOTICES AND INFORMATION BEGIN HERE
1033
+ =========================================
1034
+ MIT License
1035
+
1036
+ Copyright (c) 2024 Jordan Harband
1037
+
1038
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1039
+ of this software and associated documentation files (the "Software"), to deal
1040
+ in the Software without restriction, including without limitation the rights
1041
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1042
+ copies of the Software, and to permit persons to whom the Software is
1043
+ furnished to do so, subject to the following conditions:
1044
+
1045
+ The above copyright notice and this permission notice shall be included in all
1046
+ copies or substantial portions of the Software.
1047
+
1048
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1049
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1050
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1051
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1052
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1053
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1054
+ SOFTWARE.
1055
+ =========================================
1056
+ END OF es-define-property@1.0.1 AND INFORMATION
1057
+
1058
+ %% es-errors@1.3.0 NOTICES AND INFORMATION BEGIN HERE
1059
+ =========================================
1060
+ MIT License
1061
+
1062
+ Copyright (c) 2024 Jordan Harband
1063
+
1064
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1065
+ of this software and associated documentation files (the "Software"), to deal
1066
+ in the Software without restriction, including without limitation the rights
1067
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1068
+ copies of the Software, and to permit persons to whom the Software is
1069
+ furnished to do so, subject to the following conditions:
1070
+
1071
+ The above copyright notice and this permission notice shall be included in all
1072
+ copies or substantial portions of the Software.
1073
+
1074
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1075
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1076
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1077
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1078
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1079
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1080
+ SOFTWARE.
1081
+ =========================================
1082
+ END OF es-errors@1.3.0 AND INFORMATION
1083
+
1084
+ %% es-object-atoms@1.1.1 NOTICES AND INFORMATION BEGIN HERE
1085
+ =========================================
1086
+ MIT License
1087
+
1088
+ Copyright (c) 2024 Jordan Harband
1089
+
1090
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1091
+ of this software and associated documentation files (the "Software"), to deal
1092
+ in the Software without restriction, including without limitation the rights
1093
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1094
+ copies of the Software, and to permit persons to whom the Software is
1095
+ furnished to do so, subject to the following conditions:
1096
+
1097
+ The above copyright notice and this permission notice shall be included in all
1098
+ copies or substantial portions of the Software.
1099
+
1100
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1101
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1102
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1103
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1104
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1105
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1106
+ SOFTWARE.
1107
+ =========================================
1108
+ END OF es-object-atoms@1.1.1 AND INFORMATION
1109
+
1110
+ %% escape-html@1.0.3 NOTICES AND INFORMATION BEGIN HERE
1111
+ =========================================
1112
+ (The MIT License)
1113
+
1114
+ Copyright (c) 2012-2013 TJ Holowaychuk
1115
+ Copyright (c) 2015 Andreas Lubbe
1116
+ Copyright (c) 2015 Tiancheng "Timothy" Gu
1117
+
1118
+ Permission is hereby granted, free of charge, to any person obtaining
1119
+ a copy of this software and associated documentation files (the
1120
+ 'Software'), to deal in the Software without restriction, including
1121
+ without limitation the rights to use, copy, modify, merge, publish,
1122
+ distribute, sublicense, and/or sell copies of the Software, and to
1123
+ permit persons to whom the Software is furnished to do so, subject to
1124
+ the following conditions:
1125
+
1126
+ The above copyright notice and this permission notice shall be
1127
+ included in all copies or substantial portions of the Software.
1128
+
1129
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
1130
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1131
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
1132
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
1133
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
1134
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1135
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1136
+ =========================================
1137
+ END OF escape-html@1.0.3 AND INFORMATION
1138
+
1139
+ %% etag@1.8.1 NOTICES AND INFORMATION BEGIN HERE
1140
+ =========================================
1141
+ (The MIT License)
1142
+
1143
+ Copyright (c) 2014-2016 Douglas Christopher Wilson
1144
+
1145
+ Permission is hereby granted, free of charge, to any person obtaining
1146
+ a copy of this software and associated documentation files (the
1147
+ 'Software'), to deal in the Software without restriction, including
1148
+ without limitation the rights to use, copy, modify, merge, publish,
1149
+ distribute, sublicense, and/or sell copies of the Software, and to
1150
+ permit persons to whom the Software is furnished to do so, subject to
1151
+ the following conditions:
1152
+
1153
+ The above copyright notice and this permission notice shall be
1154
+ included in all copies or substantial portions of the Software.
1155
+
1156
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
1157
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1158
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
1159
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
1160
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
1161
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1162
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1163
+ =========================================
1164
+ END OF etag@1.8.1 AND INFORMATION
1165
+
1166
+ %% eventsource-parser@3.0.3 NOTICES AND INFORMATION BEGIN HERE
1167
+ =========================================
1168
+ MIT License
1169
+
1170
+ Copyright (c) 2025 Espen Hovlandsdal <espen@hovlandsdal.com>
1171
+
1172
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1173
+ of this software and associated documentation files (the "Software"), to deal
1174
+ in the Software without restriction, including without limitation the rights
1175
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1176
+ copies of the Software, and to permit persons to whom the Software is
1177
+ furnished to do so, subject to the following conditions:
1178
+
1179
+ The above copyright notice and this permission notice shall be included in all
1180
+ copies or substantial portions of the Software.
1181
+
1182
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1183
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1184
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1185
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1186
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1187
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1188
+ SOFTWARE.
1189
+ =========================================
1190
+ END OF eventsource-parser@3.0.3 AND INFORMATION
1191
+
1192
+ %% eventsource@3.0.7 NOTICES AND INFORMATION BEGIN HERE
1193
+ =========================================
1194
+ The MIT License
1195
+
1196
+ Copyright (c) EventSource GitHub organisation
1197
+
1198
+ Permission is hereby granted, free of charge, to any person obtaining
1199
+ a copy of this software and associated documentation files (the
1200
+ "Software"), to deal in the Software without restriction, including
1201
+ without limitation the rights to use, copy, modify, merge, publish,
1202
+ distribute, sublicense, and/or sell copies of the Software, and to
1203
+ permit persons to whom the Software is furnished to do so, subject to
1204
+ the following conditions:
1205
+
1206
+ The above copyright notice and this permission notice shall be
1207
+ included in all copies or substantial portions of the Software.
1208
+
1209
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1210
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1211
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1212
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
1213
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
1214
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
1215
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1216
+ =========================================
1217
+ END OF eventsource@3.0.7 AND INFORMATION
1218
+
1219
+ %% express-rate-limit@8.2.1 NOTICES AND INFORMATION BEGIN HERE
1220
+ =========================================
1221
+ # MIT License
1222
+
1223
+ Copyright 2023 Nathan Friedly, Vedant K
1224
+
1225
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
1226
+ this software and associated documentation files (the "Software"), to deal in
1227
+ the Software without restriction, including without limitation the rights to
1228
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
1229
+ the Software, and to permit persons to whom the Software is furnished to do so,
1230
+ subject to the following conditions:
1231
+
1232
+ The above copyright notice and this permission notice shall be included in all
1233
+ copies or substantial portions of the Software.
1234
+
1235
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1236
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
1237
+ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
1238
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
1239
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
1240
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1241
+ =========================================
1242
+ END OF express-rate-limit@8.2.1 AND INFORMATION
1243
+
1244
+ %% express@5.2.1 NOTICES AND INFORMATION BEGIN HERE
1245
+ =========================================
1246
+ (The MIT License)
1247
+
1248
+ Copyright (c) 2009-2014 TJ Holowaychuk <tj@vision-media.ca>
1249
+ Copyright (c) 2013-2014 Roman Shtylman <shtylman+expressjs@gmail.com>
1250
+ Copyright (c) 2014-2015 Douglas Christopher Wilson <doug@somethingdoug.com>
1251
+
1252
+ Permission is hereby granted, free of charge, to any person obtaining
1253
+ a copy of this software and associated documentation files (the
1254
+ 'Software'), to deal in the Software without restriction, including
1255
+ without limitation the rights to use, copy, modify, merge, publish,
1256
+ distribute, sublicense, and/or sell copies of the Software, and to
1257
+ permit persons to whom the Software is furnished to do so, subject to
1258
+ the following conditions:
1259
+
1260
+ The above copyright notice and this permission notice shall be
1261
+ included in all copies or substantial portions of the Software.
1262
+
1263
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
1264
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1265
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
1266
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
1267
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
1268
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1269
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1270
+ =========================================
1271
+ END OF express@5.2.1 AND INFORMATION
1272
+
1273
+ %% fast-deep-equal@3.1.3 NOTICES AND INFORMATION BEGIN HERE
1274
+ =========================================
1275
+ MIT License
1276
+
1277
+ Copyright (c) 2017 Evgeny Poberezkin
1278
+
1279
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1280
+ of this software and associated documentation files (the "Software"), to deal
1281
+ in the Software without restriction, including without limitation the rights
1282
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1283
+ copies of the Software, and to permit persons to whom the Software is
1284
+ furnished to do so, subject to the following conditions:
1285
+
1286
+ The above copyright notice and this permission notice shall be included in all
1287
+ copies or substantial portions of the Software.
1288
+
1289
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1290
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1291
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1292
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1293
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1294
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1295
+ SOFTWARE.
1296
+ =========================================
1297
+ END OF fast-deep-equal@3.1.3 AND INFORMATION
1298
+
1299
+ %% fast-uri@3.1.0 NOTICES AND INFORMATION BEGIN HERE
1300
+ =========================================
1301
+ Copyright (c) 2011-2021, Gary Court until https://github.com/garycourt/uri-js/commit/a1acf730b4bba3f1097c9f52e7d9d3aba8cdcaae
1302
+ Copyright (c) 2021-present The Fastify team
1303
+ All rights reserved.
1304
+
1305
+ The Fastify team members are listed at https://github.com/fastify/fastify#team.
1306
+
1307
+ Redistribution and use in source and binary forms, with or without
1308
+ modification, are permitted provided that the following conditions are met:
1309
+ * Redistributions of source code must retain the above copyright
1310
+ notice, this list of conditions and the following disclaimer.
1311
+ * Redistributions in binary form must reproduce the above copyright
1312
+ notice, this list of conditions and the following disclaimer in the
1313
+ documentation and/or other materials provided with the distribution.
1314
+ * The names of any contributors may not be used to endorse or promote
1315
+ products derived from this software without specific prior written
1316
+ permission.
1317
+
1318
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
1319
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
1320
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
1321
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS AND CONTRIBUTORS BE LIABLE FOR ANY
1322
+ DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
1323
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
1324
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
1325
+ ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
1326
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
1327
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1328
+
1329
+ * * *
1330
+
1331
+ The complete list of contributors can be found at:
1332
+ - https://github.com/garycourt/uri-js/graphs/contributors
1333
+ =========================================
1334
+ END OF fast-uri@3.1.0 AND INFORMATION
1335
+
1336
+ %% finalhandler@2.1.1 NOTICES AND INFORMATION BEGIN HERE
1337
+ =========================================
1338
+ (The MIT License)
1339
+
1340
+ Copyright (c) 2014-2022 Douglas Christopher Wilson <doug@somethingdoug.com>
1341
+
1342
+ Permission is hereby granted, free of charge, to any person obtaining
1343
+ a copy of this software and associated documentation files (the
1344
+ 'Software'), to deal in the Software without restriction, including
1345
+ without limitation the rights to use, copy, modify, merge, publish,
1346
+ distribute, sublicense, and/or sell copies of the Software, and to
1347
+ permit persons to whom the Software is furnished to do so, subject to
1348
+ the following conditions:
1349
+
1350
+ The above copyright notice and this permission notice shall be
1351
+ included in all copies or substantial portions of the Software.
1352
+
1353
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
1354
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1355
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
1356
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
1357
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
1358
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1359
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1360
+ =========================================
1361
+ END OF finalhandler@2.1.1 AND INFORMATION
1362
+
1363
+ %% forwarded@0.2.0 NOTICES AND INFORMATION BEGIN HERE
1364
+ =========================================
1365
+ (The MIT License)
1366
+
1367
+ Copyright (c) 2014-2017 Douglas Christopher Wilson
1368
+
1369
+ Permission is hereby granted, free of charge, to any person obtaining
1370
+ a copy of this software and associated documentation files (the
1371
+ 'Software'), to deal in the Software without restriction, including
1372
+ without limitation the rights to use, copy, modify, merge, publish,
1373
+ distribute, sublicense, and/or sell copies of the Software, and to
1374
+ permit persons to whom the Software is furnished to do so, subject to
1375
+ the following conditions:
1376
+
1377
+ The above copyright notice and this permission notice shall be
1378
+ included in all copies or substantial portions of the Software.
1379
+
1380
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
1381
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1382
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
1383
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
1384
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
1385
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1386
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1387
+ =========================================
1388
+ END OF forwarded@0.2.0 AND INFORMATION
1389
+
1390
+ %% fresh@2.0.0 NOTICES AND INFORMATION BEGIN HERE
1391
+ =========================================
1392
+ (The MIT License)
1393
+
1394
+ Copyright (c) 2012 TJ Holowaychuk <tj@vision-media.ca>
1395
+ Copyright (c) 2016-2017 Douglas Christopher Wilson <doug@somethingdoug.com>
1396
+
1397
+ Permission is hereby granted, free of charge, to any person obtaining
1398
+ a copy of this software and associated documentation files (the
1399
+ 'Software'), to deal in the Software without restriction, including
1400
+ without limitation the rights to use, copy, modify, merge, publish,
1401
+ distribute, sublicense, and/or sell copies of the Software, and to
1402
+ permit persons to whom the Software is furnished to do so, subject to
1403
+ the following conditions:
1404
+
1405
+ The above copyright notice and this permission notice shall be
1406
+ included in all copies or substantial portions of the Software.
1407
+
1408
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
1409
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1410
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
1411
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
1412
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
1413
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1414
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1415
+ =========================================
1416
+ END OF fresh@2.0.0 AND INFORMATION
1417
+
1418
+ %% function-bind@1.1.2 NOTICES AND INFORMATION BEGIN HERE
1419
+ =========================================
1420
+ Copyright (c) 2013 Raynos.
1421
+
1422
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1423
+ of this software and associated documentation files (the "Software"), to deal
1424
+ in the Software without restriction, including without limitation the rights
1425
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1426
+ copies of the Software, and to permit persons to whom the Software is
1427
+ furnished to do so, subject to the following conditions:
1428
+
1429
+ The above copyright notice and this permission notice shall be included in
1430
+ all copies or substantial portions of the Software.
1431
+
1432
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1433
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1434
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1435
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1436
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1437
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1438
+ THE SOFTWARE.
1439
+ =========================================
1440
+ END OF function-bind@1.1.2 AND INFORMATION
1441
+
1442
+ %% get-intrinsic@1.3.0 NOTICES AND INFORMATION BEGIN HERE
1443
+ =========================================
1444
+ MIT License
1445
+
1446
+ Copyright (c) 2020 Jordan Harband
1447
+
1448
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1449
+ of this software and associated documentation files (the "Software"), to deal
1450
+ in the Software without restriction, including without limitation the rights
1451
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1452
+ copies of the Software, and to permit persons to whom the Software is
1453
+ furnished to do so, subject to the following conditions:
1454
+
1455
+ The above copyright notice and this permission notice shall be included in all
1456
+ copies or substantial portions of the Software.
1457
+
1458
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1459
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1460
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1461
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1462
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1463
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1464
+ SOFTWARE.
1465
+ =========================================
1466
+ END OF get-intrinsic@1.3.0 AND INFORMATION
1467
+
1468
+ %% get-proto@1.0.1 NOTICES AND INFORMATION BEGIN HERE
1469
+ =========================================
1470
+ MIT License
1471
+
1472
+ Copyright (c) 2025 Jordan Harband
1473
+
1474
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1475
+ of this software and associated documentation files (the "Software"), to deal
1476
+ in the Software without restriction, including without limitation the rights
1477
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1478
+ copies of the Software, and to permit persons to whom the Software is
1479
+ furnished to do so, subject to the following conditions:
1480
+
1481
+ The above copyright notice and this permission notice shall be included in all
1482
+ copies or substantial portions of the Software.
1483
+
1484
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1485
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1486
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1487
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1488
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1489
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1490
+ SOFTWARE.
1491
+ =========================================
1492
+ END OF get-proto@1.0.1 AND INFORMATION
1493
+
1494
+ %% get-stream@5.2.0 NOTICES AND INFORMATION BEGIN HERE
1495
+ =========================================
1496
+ MIT License
1497
+
1498
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
1499
+
1500
+ 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:
1501
+
1502
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
1503
+
1504
+ 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.
1505
+ =========================================
1506
+ END OF get-stream@5.2.0 AND INFORMATION
1507
+
1508
+ %% gopd@1.2.0 NOTICES AND INFORMATION BEGIN HERE
1509
+ =========================================
1510
+ MIT License
1511
+
1512
+ Copyright (c) 2022 Jordan Harband
1513
+
1514
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1515
+ of this software and associated documentation files (the "Software"), to deal
1516
+ in the Software without restriction, including without limitation the rights
1517
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1518
+ copies of the Software, and to permit persons to whom the Software is
1519
+ furnished to do so, subject to the following conditions:
1520
+
1521
+ The above copyright notice and this permission notice shall be included in all
1522
+ copies or substantial portions of the Software.
1523
+
1524
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1525
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1526
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1527
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1528
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1529
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1530
+ SOFTWARE.
1531
+ =========================================
1532
+ END OF gopd@1.2.0 AND INFORMATION
1533
+
1534
+ %% graceful-fs@4.2.10 NOTICES AND INFORMATION BEGIN HERE
1535
+ =========================================
1536
+ The ISC License
1537
+
1538
+ Copyright (c) 2011-2022 Isaac Z. Schlueter, Ben Noordhuis, and Contributors
1539
+
1540
+ Permission to use, copy, modify, and/or distribute this software for any
1541
+ purpose with or without fee is hereby granted, provided that the above
1542
+ copyright notice and this permission notice appear in all copies.
1543
+
1544
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
1545
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
1546
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
1547
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
1548
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
1549
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
1550
+ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1551
+ =========================================
1552
+ END OF graceful-fs@4.2.10 AND INFORMATION
1553
+
1554
+ %% has-symbols@1.1.0 NOTICES AND INFORMATION BEGIN HERE
1555
+ =========================================
1556
+ MIT License
1557
+
1558
+ Copyright (c) 2016 Jordan Harband
1559
+
1560
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1561
+ of this software and associated documentation files (the "Software"), to deal
1562
+ in the Software without restriction, including without limitation the rights
1563
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1564
+ copies of the Software, and to permit persons to whom the Software is
1565
+ furnished to do so, subject to the following conditions:
1566
+
1567
+ The above copyright notice and this permission notice shall be included in all
1568
+ copies or substantial portions of the Software.
1569
+
1570
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1571
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1572
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1573
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1574
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1575
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1576
+ SOFTWARE.
1577
+ =========================================
1578
+ END OF has-symbols@1.1.0 AND INFORMATION
1579
+
1580
+ %% hasown@2.0.2 NOTICES AND INFORMATION BEGIN HERE
1581
+ =========================================
1582
+ MIT License
1583
+
1584
+ Copyright (c) Jordan Harband and contributors
1585
+
1586
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1587
+ of this software and associated documentation files (the "Software"), to deal
1588
+ in the Software without restriction, including without limitation the rights
1589
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1590
+ copies of the Software, and to permit persons to whom the Software is
1591
+ furnished to do so, subject to the following conditions:
1592
+
1593
+ The above copyright notice and this permission notice shall be included in all
1594
+ copies or substantial portions of the Software.
1595
+
1596
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1597
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1598
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1599
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1600
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1601
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1602
+ SOFTWARE.
1603
+ =========================================
1604
+ END OF hasown@2.0.2 AND INFORMATION
1605
+
1606
+ %% hono@4.12.7 NOTICES AND INFORMATION BEGIN HERE
1607
+ =========================================
1608
+ MIT License
1609
+
1610
+ Copyright (c) 2021 - present, Yusuke Wada and Hono contributors
1611
+
1612
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1613
+ of this software and associated documentation files (the "Software"), to deal
1614
+ in the Software without restriction, including without limitation the rights
1615
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1616
+ copies of the Software, and to permit persons to whom the Software is
1617
+ furnished to do so, subject to the following conditions:
1618
+
1619
+ The above copyright notice and this permission notice shall be included in all
1620
+ copies or substantial portions of the Software.
1621
+
1622
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1623
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1624
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1625
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1626
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1627
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1628
+ SOFTWARE.
1629
+ =========================================
1630
+ END OF hono@4.12.7 AND INFORMATION
1631
+
1632
+ %% http-errors@2.0.1 NOTICES AND INFORMATION BEGIN HERE
1633
+ =========================================
1634
+ The MIT License (MIT)
1635
+
1636
+ Copyright (c) 2014 Jonathan Ong me@jongleberry.com
1637
+ Copyright (c) 2016 Douglas Christopher Wilson doug@somethingdoug.com
1638
+
1639
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1640
+ of this software and associated documentation files (the "Software"), to deal
1641
+ in the Software without restriction, including without limitation the rights
1642
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1643
+ copies of the Software, and to permit persons to whom the Software is
1644
+ furnished to do so, subject to the following conditions:
1645
+
1646
+ The above copyright notice and this permission notice shall be included in
1647
+ all copies or substantial portions of the Software.
1648
+
1649
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1650
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1651
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1652
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1653
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1654
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1655
+ THE SOFTWARE.
1656
+ =========================================
1657
+ END OF http-errors@2.0.1 AND INFORMATION
1658
+
1659
+ %% https-proxy-agent@7.0.6 NOTICES AND INFORMATION BEGIN HERE
1660
+ =========================================
1661
+ (The MIT License)
1662
+
1663
+ Copyright (c) 2013 Nathan Rajlich <nathan@tootallnate.net>
1664
+
1665
+ Permission is hereby granted, free of charge, to any person obtaining
1666
+ a copy of this software and associated documentation files (the
1667
+ 'Software'), to deal in the Software without restriction, including
1668
+ without limitation the rights to use, copy, modify, merge, publish,
1669
+ distribute, sublicense, and/or sell copies of the Software, and to
1670
+ permit persons to whom the Software is furnished to do so, subject to
1671
+ the following conditions:
1672
+
1673
+ The above copyright notice and this permission notice shall be
1674
+ included in all copies or substantial portions of the Software.
1675
+
1676
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
1677
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1678
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
1679
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
1680
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
1681
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1682
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1683
+ =========================================
1684
+ END OF https-proxy-agent@7.0.6 AND INFORMATION
1685
+
1686
+ %% iconv-lite@0.7.2 NOTICES AND INFORMATION BEGIN HERE
1687
+ =========================================
1688
+ Copyright (c) 2011 Alexander Shtuchkin
1689
+
1690
+ Permission is hereby granted, free of charge, to any person obtaining
1691
+ a copy of this software and associated documentation files (the
1692
+ "Software"), to deal in the Software without restriction, including
1693
+ without limitation the rights to use, copy, modify, merge, publish,
1694
+ distribute, sublicense, and/or sell copies of the Software, and to
1695
+ permit persons to whom the Software is furnished to do so, subject to
1696
+ the following conditions:
1697
+
1698
+ The above copyright notice and this permission notice shall be
1699
+ included in all copies or substantial portions of the Software.
1700
+
1701
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1702
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1703
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1704
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
1705
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
1706
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
1707
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1708
+ =========================================
1709
+ END OF iconv-lite@0.7.2 AND INFORMATION
1710
+
1711
+ %% inherits@2.0.4 NOTICES AND INFORMATION BEGIN HERE
1712
+ =========================================
1713
+ The ISC License
1714
+
1715
+ Copyright (c) Isaac Z. Schlueter
1716
+
1717
+ Permission to use, copy, modify, and/or distribute this software for any
1718
+ purpose with or without fee is hereby granted, provided that the above
1719
+ copyright notice and this permission notice appear in all copies.
1720
+
1721
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
1722
+ REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
1723
+ FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
1724
+ INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
1725
+ LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
1726
+ OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
1727
+ PERFORMANCE OF THIS SOFTWARE.
1728
+ =========================================
1729
+ END OF inherits@2.0.4 AND INFORMATION
1730
+
1731
+ %% ini@6.0.0 NOTICES AND INFORMATION BEGIN HERE
1732
+ =========================================
1733
+ The ISC License
1734
+
1735
+ Copyright (c) Isaac Z. Schlueter and Contributors
1736
+
1737
+ Permission to use, copy, modify, and/or distribute this software for any
1738
+ purpose with or without fee is hereby granted, provided that the above
1739
+ copyright notice and this permission notice appear in all copies.
1740
+
1741
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
1742
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
1743
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
1744
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
1745
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
1746
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
1747
+ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1748
+ =========================================
1749
+ END OF ini@6.0.0 AND INFORMATION
1750
+
1751
+ %% ip-address@10.0.1 NOTICES AND INFORMATION BEGIN HERE
1752
+ =========================================
1753
+ Copyright (C) 2011 by Beau Gunderson
1754
+
1755
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1756
+ of this software and associated documentation files (the "Software"), to deal
1757
+ in the Software without restriction, including without limitation the rights
1758
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1759
+ copies of the Software, and to permit persons to whom the Software is
1760
+ furnished to do so, subject to the following conditions:
1761
+
1762
+ The above copyright notice and this permission notice shall be included in
1763
+ all copies or substantial portions of the Software.
1764
+
1765
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1766
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1767
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1768
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1769
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1770
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1771
+ THE SOFTWARE.
1772
+ =========================================
1773
+ END OF ip-address@10.0.1 AND INFORMATION
1774
+
1775
+ %% ip-address@9.0.5 NOTICES AND INFORMATION BEGIN HERE
1776
+ =========================================
1777
+ Copyright (C) 2011 by Beau Gunderson
1778
+
1779
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1780
+ of this software and associated documentation files (the "Software"), to deal
1781
+ in the Software without restriction, including without limitation the rights
1782
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1783
+ copies of the Software, and to permit persons to whom the Software is
1784
+ furnished to do so, subject to the following conditions:
1785
+
1786
+ The above copyright notice and this permission notice shall be included in
1787
+ all copies or substantial portions of the Software.
1788
+
1789
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1790
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1791
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1792
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1793
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1794
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1795
+ THE SOFTWARE.
1796
+ =========================================
1797
+ END OF ip-address@9.0.5 AND INFORMATION
1798
+
1799
+ %% ipaddr.js@1.9.1 NOTICES AND INFORMATION BEGIN HERE
1800
+ =========================================
1801
+ Copyright (C) 2011-2017 whitequark <whitequark@whitequark.org>
1802
+
1803
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1804
+ of this software and associated documentation files (the "Software"), to deal
1805
+ in the Software without restriction, including without limitation the rights
1806
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1807
+ copies of the Software, and to permit persons to whom the Software is
1808
+ furnished to do so, subject to the following conditions:
1809
+
1810
+ The above copyright notice and this permission notice shall be included in
1811
+ all copies or substantial portions of the Software.
1812
+
1813
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1814
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1815
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1816
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1817
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1818
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1819
+ THE SOFTWARE.
1820
+ =========================================
1821
+ END OF ipaddr.js@1.9.1 AND INFORMATION
1822
+
1823
+ %% is-docker@2.2.1 NOTICES AND INFORMATION BEGIN HERE
1824
+ =========================================
1825
+ MIT License
1826
+
1827
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
1828
+
1829
+ 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:
1830
+
1831
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
1832
+
1833
+ 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.
1834
+ =========================================
1835
+ END OF is-docker@2.2.1 AND INFORMATION
1836
+
1837
+ %% is-promise@4.0.0 NOTICES AND INFORMATION BEGIN HERE
1838
+ =========================================
1839
+ Copyright (c) 2014 Forbes Lindesay
1840
+
1841
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1842
+ of this software and associated documentation files (the "Software"), to deal
1843
+ in the Software without restriction, including without limitation the rights
1844
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1845
+ copies of the Software, and to permit persons to whom the Software is
1846
+ furnished to do so, subject to the following conditions:
1847
+
1848
+ The above copyright notice and this permission notice shall be included in
1849
+ all copies or substantial portions of the Software.
1850
+
1851
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1852
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1853
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1854
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1855
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1856
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1857
+ THE SOFTWARE.
1858
+ =========================================
1859
+ END OF is-promise@4.0.0 AND INFORMATION
1860
+
1861
+ %% is-wsl@2.2.0 NOTICES AND INFORMATION BEGIN HERE
1862
+ =========================================
1863
+ MIT License
1864
+
1865
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
1866
+
1867
+ 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:
1868
+
1869
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
1870
+
1871
+ 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.
1872
+ =========================================
1873
+ END OF is-wsl@2.2.0 AND INFORMATION
1874
+
1875
+ %% isexe@2.0.0 NOTICES AND INFORMATION BEGIN HERE
1876
+ =========================================
1877
+ The ISC License
1878
+
1879
+ Copyright (c) Isaac Z. Schlueter and Contributors
1880
+
1881
+ Permission to use, copy, modify, and/or distribute this software for any
1882
+ purpose with or without fee is hereby granted, provided that the above
1883
+ copyright notice and this permission notice appear in all copies.
1884
+
1885
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
1886
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
1887
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
1888
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
1889
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
1890
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
1891
+ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1892
+ =========================================
1893
+ END OF isexe@2.0.0 AND INFORMATION
1894
+
1895
+ %% jose@6.1.3 NOTICES AND INFORMATION BEGIN HERE
1896
+ =========================================
1897
+ The MIT License (MIT)
1898
+
1899
+ Copyright (c) 2018 Filip Skokan
1900
+
1901
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1902
+ of this software and associated documentation files (the "Software"), to deal
1903
+ in the Software without restriction, including without limitation the rights
1904
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1905
+ copies of the Software, and to permit persons to whom the Software is
1906
+ furnished to do so, subject to the following conditions:
1907
+
1908
+ The above copyright notice and this permission notice shall be included in all
1909
+ copies or substantial portions of the Software.
1910
+
1911
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1912
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1913
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1914
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1915
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1916
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1917
+ SOFTWARE.
1918
+ =========================================
1919
+ END OF jose@6.1.3 AND INFORMATION
1920
+
1921
+ %% jpeg-js@0.4.4 NOTICES AND INFORMATION BEGIN HERE
1922
+ =========================================
1923
+ Copyright (c) 2014, Eugene Ware
1924
+ All rights reserved.
1925
+
1926
+ Redistribution and use in source and binary forms, with or without
1927
+ modification, are permitted provided that the following conditions are met:
1928
+
1929
+ 1. Redistributions of source code must retain the above copyright
1930
+ notice, this list of conditions and the following disclaimer.
1931
+ 2. Redistributions in binary form must reproduce the above copyright
1932
+ notice, this list of conditions and the following disclaimer in the
1933
+ documentation and/or other materials provided with the distribution.
1934
+ 3. Neither the name of Eugene Ware nor the names of its contributors
1935
+ may be used to endorse or promote products derived from this software
1936
+ without specific prior written permission.
1937
+
1938
+ THIS SOFTWARE IS PROVIDED BY EUGENE WARE ''AS IS'' AND ANY
1939
+ EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
1940
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
1941
+ DISCLAIMED. IN NO EVENT SHALL EUGENE WARE BE LIABLE FOR ANY
1942
+ DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
1943
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
1944
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
1945
+ ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
1946
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
1947
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1948
+ =========================================
1949
+ END OF jpeg-js@0.4.4 AND INFORMATION
1950
+
1951
+ %% jsbn@1.1.0 NOTICES AND INFORMATION BEGIN HERE
1952
+ =========================================
1953
+ Licensing
1954
+ ---------
1955
+
1956
+ This software is covered under the following copyright:
1957
+
1958
+ /*
1959
+ * Copyright (c) 2003-2005 Tom Wu
1960
+ * All Rights Reserved.
1961
+ *
1962
+ * Permission is hereby granted, free of charge, to any person obtaining
1963
+ * a copy of this software and associated documentation files (the
1964
+ * "Software"), to deal in the Software without restriction, including
1965
+ * without limitation the rights to use, copy, modify, merge, publish,
1966
+ * distribute, sublicense, and/or sell copies of the Software, and to
1967
+ * permit persons to whom the Software is furnished to do so, subject to
1968
+ * the following conditions:
1969
+ *
1970
+ * The above copyright notice and this permission notice shall be
1971
+ * included in all copies or substantial portions of the Software.
1972
+ *
1973
+ * THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND,
1974
+ * EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY
1975
+ * WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
1976
+ *
1977
+ * IN NO EVENT SHALL TOM WU BE LIABLE FOR ANY SPECIAL, INCIDENTAL,
1978
+ * INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND, OR ANY DAMAGES WHATSOEVER
1979
+ * RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER OR NOT ADVISED OF
1980
+ * THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF LIABILITY, ARISING OUT
1981
+ * OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1982
+ *
1983
+ * In addition, the following condition applies:
1984
+ *
1985
+ * All redistributions must retain an intact copy of this copyright notice
1986
+ * and disclaimer.
1987
+ */
1988
+
1989
+ Address all questions regarding this license to:
1990
+
1991
+ Tom Wu
1992
+ tjw@cs.Stanford.EDU
1993
+ =========================================
1994
+ END OF jsbn@1.1.0 AND INFORMATION
1995
+
1996
+ %% json-schema-traverse@1.0.0 NOTICES AND INFORMATION BEGIN HERE
1997
+ =========================================
1998
+ MIT License
1999
+
2000
+ Copyright (c) 2017 Evgeny Poberezkin
2001
+
2002
+ Permission is hereby granted, free of charge, to any person obtaining a copy
2003
+ of this software and associated documentation files (the "Software"), to deal
2004
+ in the Software without restriction, including without limitation the rights
2005
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2006
+ copies of the Software, and to permit persons to whom the Software is
2007
+ furnished to do so, subject to the following conditions:
2008
+
2009
+ The above copyright notice and this permission notice shall be included in all
2010
+ copies or substantial portions of the Software.
2011
+
2012
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2013
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2014
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2015
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2016
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2017
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2018
+ SOFTWARE.
2019
+ =========================================
2020
+ END OF json-schema-traverse@1.0.0 AND INFORMATION
2021
+
2022
+ %% json-schema-typed@8.0.2 NOTICES AND INFORMATION BEGIN HERE
2023
+ =========================================
2024
+ BSD 2-Clause License
2025
+
2026
+ Original source code is copyright (c) 2019-2025 Remy Rylan
2027
+ <https://github.com/RemyRylan>
2028
+
2029
+ All JSON Schema documentation and descriptions are copyright (c):
2030
+
2031
+ 2009 [draft-0] IETF Trust <https://www.ietf.org/>, Kris Zyp <kris@sitepen.com>,
2032
+ and SitePen (USA) <https://www.sitepen.com/>.
2033
+
2034
+ 2009 [draft-1] IETF Trust <https://www.ietf.org/>, Kris Zyp <kris@sitepen.com>,
2035
+ and SitePen (USA) <https://www.sitepen.com/>.
2036
+
2037
+ 2010 [draft-2] IETF Trust <https://www.ietf.org/>, Kris Zyp <kris@sitepen.com>,
2038
+ and SitePen (USA) <https://www.sitepen.com/>.
2039
+
2040
+ 2010 [draft-3] IETF Trust <https://www.ietf.org/>, Kris Zyp <kris@sitepen.com>,
2041
+ Gary Court <gary.court@gmail.com>, and SitePen (USA) <https://www.sitepen.com/>.
2042
+
2043
+ 2013 [draft-4] IETF Trust <https://www.ietf.org/>), Francis Galiegue
2044
+ <fgaliegue@gmail.com>, Kris Zyp <kris@sitepen.com>, Gary Court
2045
+ <gary.court@gmail.com>, and SitePen (USA) <https://www.sitepen.com/>.
2046
+
2047
+ 2018 [draft-7] IETF Trust <https://www.ietf.org/>, Austin Wright <aaa@bzfx.net>,
2048
+ Henry Andrews <henry@cloudflare.com>, Geraint Luff <luffgd@gmail.com>, and
2049
+ Cloudflare, Inc. <https://www.cloudflare.com/>.
2050
+
2051
+ 2019 [draft-2019-09] IETF Trust <https://www.ietf.org/>, Austin Wright
2052
+ <aaa@bzfx.net>, Henry Andrews <andrews_henry@yahoo.com>, Ben Hutton
2053
+ <bh7@sanger.ac.uk>, and Greg Dennis <gregsdennis@yahoo.com>.
2054
+
2055
+ 2020 [draft-2020-12] IETF Trust <https://www.ietf.org/>, Austin Wright
2056
+ <aaa@bzfx.net>, Henry Andrews <andrews_henry@yahoo.com>, Ben Hutton
2057
+ <ben@jsonschema.dev>, and Greg Dennis <gregsdennis@yahoo.com>.
2058
+
2059
+ All rights reserved.
2060
+
2061
+ Redistribution and use in source and binary forms, with or without modification,
2062
+ are permitted provided that the following conditions are met:
2063
+
2064
+ 1. Redistributions of source code must retain the above copyright notice, this
2065
+ list of conditions and the following disclaimer.
2066
+
2067
+ 2. Redistributions in binary form must reproduce the above copyright notice,
2068
+ this list of conditions and the following disclaimer in the documentation
2069
+ and/or other materials provided with the distribution.
2070
+
2071
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
2072
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
2073
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
2074
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
2075
+ ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
2076
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
2077
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
2078
+ ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
2079
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
2080
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2081
+ =========================================
2082
+ END OF json-schema-typed@8.0.2 AND INFORMATION
2083
+
2084
+ %% math-intrinsics@1.1.0 NOTICES AND INFORMATION BEGIN HERE
2085
+ =========================================
2086
+ MIT License
2087
+
2088
+ Copyright (c) 2024 ECMAScript Shims
2089
+
2090
+ Permission is hereby granted, free of charge, to any person obtaining a copy
2091
+ of this software and associated documentation files (the "Software"), to deal
2092
+ in the Software without restriction, including without limitation the rights
2093
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2094
+ copies of the Software, and to permit persons to whom the Software is
2095
+ furnished to do so, subject to the following conditions:
2096
+
2097
+ The above copyright notice and this permission notice shall be included in all
2098
+ copies or substantial portions of the Software.
2099
+
2100
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2101
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2102
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2103
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2104
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2105
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2106
+ SOFTWARE.
2107
+ =========================================
2108
+ END OF math-intrinsics@1.1.0 AND INFORMATION
2109
+
2110
+ %% media-typer@1.1.0 NOTICES AND INFORMATION BEGIN HERE
2111
+ =========================================
2112
+ (The MIT License)
2113
+
2114
+ Copyright (c) 2014-2017 Douglas Christopher Wilson
2115
+
2116
+ Permission is hereby granted, free of charge, to any person obtaining
2117
+ a copy of this software and associated documentation files (the
2118
+ 'Software'), to deal in the Software without restriction, including
2119
+ without limitation the rights to use, copy, modify, merge, publish,
2120
+ distribute, sublicense, and/or sell copies of the Software, and to
2121
+ permit persons to whom the Software is furnished to do so, subject to
2122
+ the following conditions:
2123
+
2124
+ The above copyright notice and this permission notice shall be
2125
+ included in all copies or substantial portions of the Software.
2126
+
2127
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
2128
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
2129
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
2130
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
2131
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
2132
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
2133
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2134
+ =========================================
2135
+ END OF media-typer@1.1.0 AND INFORMATION
2136
+
2137
+ %% merge-descriptors@2.0.0 NOTICES AND INFORMATION BEGIN HERE
2138
+ =========================================
2139
+ MIT License
2140
+
2141
+ Copyright (c) Jonathan Ong <me@jongleberry.com>
2142
+ Copyright (c) Douglas Christopher Wilson <doug@somethingdoug.com>
2143
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
2144
+
2145
+ 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:
2146
+
2147
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
2148
+
2149
+ 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.
2150
+ =========================================
2151
+ END OF merge-descriptors@2.0.0 AND INFORMATION
2152
+
2153
+ %% mime-db@1.54.0 NOTICES AND INFORMATION BEGIN HERE
2154
+ =========================================
2155
+ (The MIT License)
2156
+
2157
+ Copyright (c) 2014 Jonathan Ong <me@jongleberry.com>
2158
+ Copyright (c) 2015-2022 Douglas Christopher Wilson <doug@somethingdoug.com>
2159
+
2160
+ Permission is hereby granted, free of charge, to any person obtaining
2161
+ a copy of this software and associated documentation files (the
2162
+ 'Software'), to deal in the Software without restriction, including
2163
+ without limitation the rights to use, copy, modify, merge, publish,
2164
+ distribute, sublicense, and/or sell copies of the Software, and to
2165
+ permit persons to whom the Software is furnished to do so, subject to
2166
+ the following conditions:
2167
+
2168
+ The above copyright notice and this permission notice shall be
2169
+ included in all copies or substantial portions of the Software.
2170
+
2171
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
2172
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
2173
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
2174
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
2175
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
2176
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
2177
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2178
+ =========================================
2179
+ END OF mime-db@1.54.0 AND INFORMATION
2180
+
2181
+ %% mime-types@3.0.2 NOTICES AND INFORMATION BEGIN HERE
2182
+ =========================================
2183
+ (The MIT License)
2184
+
2185
+ Copyright (c) 2014 Jonathan Ong <me@jongleberry.com>
2186
+ Copyright (c) 2015 Douglas Christopher Wilson <doug@somethingdoug.com>
2187
+
2188
+ Permission is hereby granted, free of charge, to any person obtaining
2189
+ a copy of this software and associated documentation files (the
2190
+ 'Software'), to deal in the Software without restriction, including
2191
+ without limitation the rights to use, copy, modify, merge, publish,
2192
+ distribute, sublicense, and/or sell copies of the Software, and to
2193
+ permit persons to whom the Software is furnished to do so, subject to
2194
+ the following conditions:
2195
+
2196
+ The above copyright notice and this permission notice shall be
2197
+ included in all copies or substantial portions of the Software.
2198
+
2199
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
2200
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
2201
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
2202
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
2203
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
2204
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
2205
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2206
+ =========================================
2207
+ END OF mime-types@3.0.2 AND INFORMATION
2208
+
2209
+ %% mime@3.0.0 NOTICES AND INFORMATION BEGIN HERE
2210
+ =========================================
2211
+ The MIT License (MIT)
2212
+
2213
+ Copyright (c) 2010 Benjamin Thomas, Robert Kieffer
2214
+
2215
+ Permission is hereby granted, free of charge, to any person obtaining a copy
2216
+ of this software and associated documentation files (the "Software"), to deal
2217
+ in the Software without restriction, including without limitation the rights
2218
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2219
+ copies of the Software, and to permit persons to whom the Software is
2220
+ furnished to do so, subject to the following conditions:
2221
+
2222
+ The above copyright notice and this permission notice shall be included in
2223
+ all copies or substantial portions of the Software.
2224
+
2225
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2226
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2227
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2228
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2229
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2230
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2231
+ THE SOFTWARE.
2232
+ =========================================
2233
+ END OF mime@3.0.0 AND INFORMATION
2234
+
2235
+ %% minimatch@3.1.4 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 minimatch@3.1.4 AND INFORMATION
2254
+
2255
+ %% ms@2.1.2 NOTICES AND INFORMATION BEGIN HERE
2256
+ =========================================
2257
+ The MIT License (MIT)
2258
+
2259
+ Copyright (c) 2016 Zeit, 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.2 AND INFORMATION
2280
+
2281
+ %% ms@2.1.3 NOTICES AND INFORMATION BEGIN HERE
2282
+ =========================================
2283
+ The MIT License (MIT)
2284
+
2285
+ Copyright (c) 2020 Vercel, Inc.
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 all
2295
+ 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 THE
2303
+ SOFTWARE.
2304
+ =========================================
2305
+ END OF ms@2.1.3 AND INFORMATION
2306
+
2307
+ %% negotiator@1.0.0 NOTICES AND INFORMATION BEGIN HERE
2308
+ =========================================
2309
+ (The MIT License)
2310
+
2311
+ Copyright (c) 2012-2014 Federico Romero
2312
+ Copyright (c) 2012-2014 Isaac Z. Schlueter
2313
+ Copyright (c) 2014-2015 Douglas Christopher Wilson
2314
+
2315
+ Permission is hereby granted, free of charge, to any person obtaining
2316
+ a copy of this software and associated documentation files (the
2317
+ 'Software'), to deal in the Software without restriction, including
2318
+ without limitation the rights to use, copy, modify, merge, publish,
2319
+ distribute, sublicense, and/or sell copies of the Software, and to
2320
+ permit persons to whom the Software is furnished to do so, subject to
2321
+ the following conditions:
2322
+
2323
+ The above copyright notice and this permission notice shall be
2324
+ included in all copies or substantial portions of the Software.
2325
+
2326
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
2327
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
2328
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
2329
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
2330
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
2331
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
2332
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2333
+ =========================================
2334
+ END OF negotiator@1.0.0 AND INFORMATION
2335
+
2336
+ %% object-assign@4.1.1 NOTICES AND INFORMATION BEGIN HERE
2337
+ =========================================
2338
+ The MIT License (MIT)
2339
+
2340
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
2341
+
2342
+ Permission is hereby granted, free of charge, to any person obtaining a copy
2343
+ of this software and associated documentation files (the "Software"), to deal
2344
+ in the Software without restriction, including without limitation the rights
2345
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2346
+ copies of the Software, and to permit persons to whom the Software is
2347
+ furnished to do so, subject to the following conditions:
2348
+
2349
+ The above copyright notice and this permission notice shall be included in
2350
+ all copies or substantial portions of the Software.
2351
+
2352
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2353
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2354
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2355
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2356
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2357
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2358
+ THE SOFTWARE.
2359
+ =========================================
2360
+ END OF object-assign@4.1.1 AND INFORMATION
2361
+
2362
+ %% object-inspect@1.13.4 NOTICES AND INFORMATION BEGIN HERE
2363
+ =========================================
2364
+ MIT License
2365
+
2366
+ Copyright (c) 2013 James Halliday
2367
+
2368
+ Permission is hereby granted, free of charge, to any person obtaining a copy
2369
+ of this software and associated documentation files (the "Software"), to deal
2370
+ in the Software without restriction, including without limitation the rights
2371
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2372
+ copies of the Software, and to permit persons to whom the Software is
2373
+ furnished to do so, subject to the following conditions:
2374
+
2375
+ The above copyright notice and this permission notice shall be included in all
2376
+ copies or substantial portions of the Software.
2377
+
2378
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2379
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2380
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2381
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2382
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2383
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2384
+ SOFTWARE.
2385
+ =========================================
2386
+ END OF object-inspect@1.13.4 AND INFORMATION
2387
+
2388
+ %% on-finished@2.4.1 NOTICES AND INFORMATION BEGIN HERE
2389
+ =========================================
2390
+ (The MIT License)
2391
+
2392
+ Copyright (c) 2013 Jonathan Ong <me@jongleberry.com>
2393
+ Copyright (c) 2014 Douglas Christopher Wilson <doug@somethingdoug.com>
2394
+
2395
+ Permission is hereby granted, free of charge, to any person obtaining
2396
+ a copy of this software and associated documentation files (the
2397
+ 'Software'), to deal in the Software without restriction, including
2398
+ without limitation the rights to use, copy, modify, merge, publish,
2399
+ distribute, sublicense, and/or sell copies of the Software, and to
2400
+ permit persons to whom the Software is furnished to do so, subject to
2401
+ the following conditions:
2402
+
2403
+ The above copyright notice and this permission notice shall be
2404
+ included in all copies or substantial portions of the Software.
2405
+
2406
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
2407
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
2408
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
2409
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
2410
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
2411
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
2412
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2413
+ =========================================
2414
+ END OF on-finished@2.4.1 AND INFORMATION
2415
+
2416
+ %% once@1.4.0 NOTICES AND INFORMATION BEGIN HERE
2417
+ =========================================
2418
+ The ISC License
2419
+
2420
+ Copyright (c) Isaac Z. Schlueter and Contributors
2421
+
2422
+ Permission to use, copy, modify, and/or distribute this software for any
2423
+ purpose with or without fee is hereby granted, provided that the above
2424
+ copyright notice and this permission notice appear in all copies.
2425
+
2426
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
2427
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
2428
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
2429
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
2430
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
2431
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
2432
+ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
2433
+ =========================================
2434
+ END OF once@1.4.0 AND INFORMATION
2435
+
2436
+ %% open@8.4.0 NOTICES AND INFORMATION BEGIN HERE
2437
+ =========================================
2438
+ MIT License
2439
+
2440
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
2441
+
2442
+ 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:
2443
+
2444
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
2445
+
2446
+ 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.
2447
+ =========================================
2448
+ END OF open@8.4.0 AND INFORMATION
2449
+
2450
+ %% parseurl@1.3.3 NOTICES AND INFORMATION BEGIN HERE
2451
+ =========================================
2452
+ (The MIT License)
2453
+
2454
+ Copyright (c) 2014 Jonathan Ong <me@jongleberry.com>
2455
+ Copyright (c) 2014-2017 Douglas Christopher Wilson <doug@somethingdoug.com>
2456
+
2457
+ Permission is hereby granted, free of charge, to any person obtaining
2458
+ a copy of this software and associated documentation files (the
2459
+ 'Software'), to deal in the Software without restriction, including
2460
+ without limitation the rights to use, copy, modify, merge, publish,
2461
+ distribute, sublicense, and/or sell copies of the Software, and to
2462
+ permit persons to whom the Software is furnished to do so, subject to
2463
+ the following conditions:
2464
+
2465
+ The above copyright notice and this permission notice shall be
2466
+ included in all copies or substantial portions of the Software.
2467
+
2468
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
2469
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
2470
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
2471
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
2472
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
2473
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
2474
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2475
+ =========================================
2476
+ END OF parseurl@1.3.3 AND INFORMATION
2477
+
2478
+ %% path-key@3.1.1 NOTICES AND INFORMATION BEGIN HERE
2479
+ =========================================
2480
+ MIT License
2481
+
2482
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
2483
+
2484
+ 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:
2485
+
2486
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
2487
+
2488
+ 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.
2489
+ =========================================
2490
+ END OF path-key@3.1.1 AND INFORMATION
2491
+
2492
+ %% path-to-regexp@8.3.0 NOTICES AND INFORMATION BEGIN HERE
2493
+ =========================================
2494
+ The MIT License (MIT)
2495
+
2496
+ Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com)
2497
+
2498
+ Permission is hereby granted, free of charge, to any person obtaining a copy
2499
+ of this software and associated documentation files (the "Software"), to deal
2500
+ in the Software without restriction, including without limitation the rights
2501
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2502
+ copies of the Software, and to permit persons to whom the Software is
2503
+ furnished to do so, subject to the following conditions:
2504
+
2505
+ The above copyright notice and this permission notice shall be included in
2506
+ all copies or substantial portions of the Software.
2507
+
2508
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2509
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2510
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2511
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2512
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2513
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2514
+ THE SOFTWARE.
2515
+ =========================================
2516
+ END OF path-to-regexp@8.3.0 AND INFORMATION
2517
+
2518
+ %% pend@1.2.0 NOTICES AND INFORMATION BEGIN HERE
2519
+ =========================================
2520
+ The MIT License (Expat)
2521
+
2522
+ Copyright (c) 2014 Andrew Kelley
2523
+
2524
+ Permission is hereby granted, free of charge, to any person
2525
+ obtaining a copy of this software and associated documentation files
2526
+ (the "Software"), to deal in the Software without restriction,
2527
+ including without limitation the rights to use, copy, modify, merge,
2528
+ publish, distribute, sublicense, and/or sell copies of the Software,
2529
+ and to permit persons to whom the Software is furnished to do so,
2530
+ subject to the following conditions:
2531
+
2532
+ The above copyright notice and this permission notice shall be
2533
+ included in all copies or substantial portions of the Software.
2534
+
2535
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
2536
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
2537
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
2538
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
2539
+ BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
2540
+ ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
2541
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2542
+ SOFTWARE.
2543
+ =========================================
2544
+ END OF pend@1.2.0 AND INFORMATION
2545
+
2546
+ %% pkce-challenge@5.0.0 NOTICES AND INFORMATION BEGIN HERE
2547
+ =========================================
2548
+ MIT License
2549
+
2550
+ Copyright (c) 2019
2551
+
2552
+ Permission is hereby granted, free of charge, to any person obtaining a copy
2553
+ of this software and associated documentation files (the "Software"), to deal
2554
+ in the Software without restriction, including without limitation the rights
2555
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2556
+ copies of the Software, and to permit persons to whom the Software is
2557
+ furnished to do so, subject to the following conditions:
2558
+
2559
+ The above copyright notice and this permission notice shall be included in all
2560
+ copies or substantial portions of the Software.
2561
+
2562
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2563
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2564
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2565
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2566
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2567
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2568
+ SOFTWARE.
2569
+ =========================================
2570
+ END OF pkce-challenge@5.0.0 AND INFORMATION
2571
+
2572
+ %% pngjs@6.0.0 NOTICES AND INFORMATION BEGIN HERE
2573
+ =========================================
2574
+ pngjs2 original work Copyright (c) 2015 Luke Page & Original Contributors
2575
+ pngjs derived work Copyright (c) 2012 Kuba Niegowski
2576
+
2577
+ Permission is hereby granted, free of charge, to any person obtaining a copy
2578
+ of this software and associated documentation files (the "Software"), to deal
2579
+ in the Software without restriction, including without limitation the rights
2580
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2581
+ copies of the Software, and to permit persons to whom the Software is
2582
+ furnished to do so, subject to the following conditions:
2583
+
2584
+ The above copyright notice and this permission notice shall be included in
2585
+ all copies or substantial portions of the Software.
2586
+
2587
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2588
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2589
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2590
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2591
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2592
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2593
+ THE SOFTWARE.
2594
+ =========================================
2595
+ END OF pngjs@6.0.0 AND INFORMATION
2596
+
2597
+ %% progress@2.0.3 NOTICES AND INFORMATION BEGIN HERE
2598
+ =========================================
2599
+ (The MIT License)
2600
+
2601
+ Copyright (c) 2017 TJ Holowaychuk <tj@vision-media.ca>
2602
+
2603
+ Permission is hereby granted, free of charge, to any person obtaining
2604
+ a copy of this software and associated documentation files (the
2605
+ 'Software'), to deal in the Software without restriction, including
2606
+ without limitation the rights to use, copy, modify, merge, publish,
2607
+ distribute, sublicense, and/or sell copies of the Software, and to
2608
+ permit persons to whom the Software is furnished to do so, subject to
2609
+ the following conditions:
2610
+
2611
+ The above copyright notice and this permission notice shall be
2612
+ included in all copies or substantial portions of the Software.
2613
+
2614
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
2615
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
2616
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
2617
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
2618
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
2619
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
2620
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2621
+ =========================================
2622
+ END OF progress@2.0.3 AND INFORMATION
2623
+
2624
+ %% proxy-addr@2.0.7 NOTICES AND INFORMATION BEGIN HERE
2625
+ =========================================
2626
+ (The MIT License)
2627
+
2628
+ Copyright (c) 2014-2016 Douglas Christopher Wilson
2629
+
2630
+ Permission is hereby granted, free of charge, to any person obtaining
2631
+ a copy of this software and associated documentation files (the
2632
+ 'Software'), to deal in the Software without restriction, including
2633
+ without limitation the rights to use, copy, modify, merge, publish,
2634
+ distribute, sublicense, and/or sell copies of the Software, and to
2635
+ permit persons to whom the Software is furnished to do so, subject to
2636
+ the following conditions:
2637
+
2638
+ The above copyright notice and this permission notice shall be
2639
+ included in all copies or substantial portions of the Software.
2640
+
2641
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
2642
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
2643
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
2644
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
2645
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
2646
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
2647
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2648
+ =========================================
2649
+ END OF proxy-addr@2.0.7 AND INFORMATION
2650
+
2651
+ %% proxy-from-env@2.0.0 NOTICES AND INFORMATION BEGIN HERE
2652
+ =========================================
2653
+ The MIT License
2654
+
2655
+ Copyright (C) 2016-2018 Rob Wu <rob@robwu.nl>
2656
+
2657
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
2658
+ this software and associated documentation files (the "Software"), to deal in
2659
+ the Software without restriction, including without limitation the rights to
2660
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
2661
+ of the Software, and to permit persons to whom the Software is furnished to do
2662
+ so, subject to the following conditions:
2663
+
2664
+ The above copyright notice and this permission notice shall be included in all
2665
+ copies or substantial portions of the Software.
2666
+
2667
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2668
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
2669
+ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
2670
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
2671
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
2672
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2673
+ =========================================
2674
+ END OF proxy-from-env@2.0.0 AND INFORMATION
2675
+
2676
+ %% pump@3.0.2 NOTICES AND INFORMATION BEGIN HERE
2677
+ =========================================
2678
+ The MIT License (MIT)
2679
+
2680
+ Copyright (c) 2014 Mathias Buus
2681
+
2682
+ Permission is hereby granted, free of charge, to any person obtaining a copy
2683
+ of this software and associated documentation files (the "Software"), to deal
2684
+ in the Software without restriction, including without limitation the rights
2685
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2686
+ copies of the Software, and to permit persons to whom the Software is
2687
+ furnished to do so, subject to the following conditions:
2688
+
2689
+ The above copyright notice and this permission notice shall be included in
2690
+ all copies or substantial portions of the Software.
2691
+
2692
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2693
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2694
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2695
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2696
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2697
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2698
+ THE SOFTWARE.
2699
+ =========================================
2700
+ END OF pump@3.0.2 AND INFORMATION
2701
+
2702
+ %% qs@6.14.1 NOTICES AND INFORMATION BEGIN HERE
2703
+ =========================================
2704
+ BSD 3-Clause License
2705
+
2706
+ Copyright (c) 2014, Nathan LaFreniere and other [contributors](https://github.com/ljharb/qs/graphs/contributors)
2707
+ All rights reserved.
2708
+
2709
+ Redistribution and use in source and binary forms, with or without
2710
+ modification, are permitted provided that the following conditions are met:
2711
+
2712
+ 1. Redistributions of source code must retain the above copyright notice, this
2713
+ list of conditions and the following disclaimer.
2714
+
2715
+ 2. Redistributions in binary form must reproduce the above copyright notice,
2716
+ this list of conditions and the following disclaimer in the documentation
2717
+ and/or other materials provided with the distribution.
2718
+
2719
+ 3. Neither the name of the copyright holder nor the names of its
2720
+ contributors may be used to endorse or promote products derived from
2721
+ this software without specific prior written permission.
2722
+
2723
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
2724
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2725
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
2726
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
2727
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2728
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
2729
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
2730
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
2731
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
2732
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2733
+ =========================================
2734
+ END OF qs@6.14.1 AND INFORMATION
2735
+
2736
+ %% range-parser@1.2.1 NOTICES AND INFORMATION BEGIN HERE
2737
+ =========================================
2738
+ (The MIT License)
2739
+
2740
+ Copyright (c) 2012-2014 TJ Holowaychuk <tj@vision-media.ca>
2741
+ Copyright (c) 2015-2016 Douglas Christopher Wilson <doug@somethingdoug.com
2742
+
2743
+ Permission is hereby granted, free of charge, to any person obtaining
2744
+ a copy of this software and associated documentation files (the
2745
+ 'Software'), to deal in the Software without restriction, including
2746
+ without limitation the rights to use, copy, modify, merge, publish,
2747
+ distribute, sublicense, and/or sell copies of the Software, and to
2748
+ permit persons to whom the Software is furnished to do so, subject to
2749
+ the following conditions:
2750
+
2751
+ The above copyright notice and this permission notice shall be
2752
+ included in all copies or substantial portions of the Software.
2753
+
2754
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
2755
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
2756
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
2757
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
2758
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
2759
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
2760
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2761
+ =========================================
2762
+ END OF range-parser@1.2.1 AND INFORMATION
2763
+
2764
+ %% raw-body@3.0.2 NOTICES AND INFORMATION BEGIN HERE
2765
+ =========================================
2766
+ The MIT License (MIT)
2767
+
2768
+ Copyright (c) 2013-2014 Jonathan Ong <me@jongleberry.com>
2769
+ Copyright (c) 2014-2022 Douglas Christopher Wilson <doug@somethingdoug.com>
2770
+
2771
+ Permission is hereby granted, free of charge, to any person obtaining a copy
2772
+ of this software and associated documentation files (the "Software"), to deal
2773
+ in the Software without restriction, including without limitation the rights
2774
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2775
+ copies of the Software, and to permit persons to whom the Software is
2776
+ furnished to do so, subject to the following conditions:
2777
+
2778
+ The above copyright notice and this permission notice shall be included in
2779
+ all copies or substantial portions of the Software.
2780
+
2781
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2782
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2783
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2784
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2785
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2786
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2787
+ THE SOFTWARE.
2788
+ =========================================
2789
+ END OF raw-body@3.0.2 AND INFORMATION
2790
+
2791
+ %% require-from-string@2.0.2 NOTICES AND INFORMATION BEGIN HERE
2792
+ =========================================
2793
+ The MIT License (MIT)
2794
+
2795
+ Copyright (c) Vsevolod Strukchinsky <floatdrop@gmail.com> (github.com/floatdrop)
2796
+
2797
+ Permission is hereby granted, free of charge, to any person obtaining a copy
2798
+ of this software and associated documentation files (the "Software"), to deal
2799
+ in the Software without restriction, including without limitation the rights
2800
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2801
+ copies of the Software, and to permit persons to whom the Software is
2802
+ furnished to do so, subject to the following conditions:
2803
+
2804
+ The above copyright notice and this permission notice shall be included in
2805
+ all copies or substantial portions of the Software.
2806
+
2807
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2808
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2809
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2810
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2811
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2812
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2813
+ THE SOFTWARE.
2814
+ =========================================
2815
+ END OF require-from-string@2.0.2 AND INFORMATION
2816
+
2817
+ %% retry@0.12.0 NOTICES AND INFORMATION BEGIN HERE
2818
+ =========================================
2819
+ Copyright (c) 2011:
2820
+ Tim Koschützki (tim@debuggable.com)
2821
+ Felix Geisendörfer (felix@debuggable.com)
2822
+
2823
+ Permission is hereby granted, free of charge, to any person obtaining a copy
2824
+ of this software and associated documentation files (the "Software"), to deal
2825
+ in the Software without restriction, including without limitation the rights
2826
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2827
+ copies of the Software, and to permit persons to whom the Software is
2828
+ furnished to do so, subject to the following conditions:
2829
+
2830
+ The above copyright notice and this permission notice shall be included in
2831
+ all copies or substantial portions of the Software.
2832
+
2833
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2834
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2835
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2836
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2837
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2838
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2839
+ THE SOFTWARE.
2840
+ =========================================
2841
+ END OF retry@0.12.0 AND INFORMATION
2842
+
2843
+ %% router@2.2.0 NOTICES AND INFORMATION BEGIN HERE
2844
+ =========================================
2845
+ (The MIT License)
2846
+
2847
+ Copyright (c) 2013 Roman Shtylman
2848
+ Copyright (c) 2014-2022 Douglas Christopher Wilson
2849
+
2850
+ Permission is hereby granted, free of charge, to any person obtaining
2851
+ a copy of this software and associated documentation files (the
2852
+ 'Software'), to deal in the Software without restriction, including
2853
+ without limitation the rights to use, copy, modify, merge, publish,
2854
+ distribute, sublicense, and/or sell copies of the Software, and to
2855
+ permit persons to whom the Software is furnished to do so, subject to
2856
+ the following conditions:
2857
+
2858
+ The above copyright notice and this permission notice shall be
2859
+ included in all copies or substantial portions of the Software.
2860
+
2861
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
2862
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
2863
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
2864
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
2865
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
2866
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
2867
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2868
+ =========================================
2869
+ END OF router@2.2.0 AND INFORMATION
2870
+
2871
+ %% safer-buffer@2.1.2 NOTICES AND INFORMATION BEGIN HERE
2872
+ =========================================
2873
+ MIT License
2874
+
2875
+ Copyright (c) 2018 Nikita Skovoroda <chalkerx@gmail.com>
2876
+
2877
+ Permission is hereby granted, free of charge, to any person obtaining a copy
2878
+ of this software and associated documentation files (the "Software"), to deal
2879
+ in the Software without restriction, including without limitation the rights
2880
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2881
+ copies of the Software, and to permit persons to whom the Software is
2882
+ furnished to do so, subject to the following conditions:
2883
+
2884
+ The above copyright notice and this permission notice shall be included in all
2885
+ copies or substantial portions of the Software.
2886
+
2887
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2888
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2889
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2890
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2891
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2892
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2893
+ SOFTWARE.
2894
+ =========================================
2895
+ END OF safer-buffer@2.1.2 AND INFORMATION
2896
+
2897
+ %% send@1.2.1 NOTICES AND INFORMATION BEGIN HERE
2898
+ =========================================
2899
+ (The MIT License)
2900
+
2901
+ Copyright (c) 2012 TJ Holowaychuk
2902
+ Copyright (c) 2014-2022 Douglas Christopher Wilson
2903
+
2904
+ Permission is hereby granted, free of charge, to any person obtaining
2905
+ a copy of this software and associated documentation files (the
2906
+ 'Software'), to deal in the Software without restriction, including
2907
+ without limitation the rights to use, copy, modify, merge, publish,
2908
+ distribute, sublicense, and/or sell copies of the Software, and to
2909
+ permit persons to whom the Software is furnished to do so, subject to
2910
+ the following conditions:
2911
+
2912
+ The above copyright notice and this permission notice shall be
2913
+ included in all copies or substantial portions of the Software.
2914
+
2915
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
2916
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
2917
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
2918
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
2919
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
2920
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
2921
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2922
+ =========================================
2923
+ END OF send@1.2.1 AND INFORMATION
2924
+
2925
+ %% serve-static@2.2.1 NOTICES AND INFORMATION BEGIN HERE
2926
+ =========================================
2927
+ (The MIT License)
2928
+
2929
+ Copyright (c) 2010 Sencha Inc.
2930
+ Copyright (c) 2011 LearnBoost
2931
+ Copyright (c) 2011 TJ Holowaychuk
2932
+ Copyright (c) 2014-2016 Douglas Christopher Wilson
2933
+
2934
+ Permission is hereby granted, free of charge, to any person obtaining
2935
+ a copy of this software and associated documentation files (the
2936
+ 'Software'), to deal in the Software without restriction, including
2937
+ without limitation the rights to use, copy, modify, merge, publish,
2938
+ distribute, sublicense, and/or sell copies of the Software, and to
2939
+ permit persons to whom the Software is furnished to do so, subject to
2940
+ the following conditions:
2941
+
2942
+ The above copyright notice and this permission notice shall be
2943
+ included in all copies or substantial portions of the Software.
2944
+
2945
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
2946
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
2947
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
2948
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
2949
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
2950
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
2951
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2952
+ =========================================
2953
+ END OF serve-static@2.2.1 AND INFORMATION
2954
+
2955
+ %% setprototypeof@1.2.0 NOTICES AND INFORMATION BEGIN HERE
2956
+ =========================================
2957
+ Copyright (c) 2015, Wes Todd
2958
+
2959
+ Permission to use, copy, modify, and/or distribute this software for any
2960
+ purpose with or without fee is hereby granted, provided that the above
2961
+ copyright notice and this permission notice appear in all copies.
2962
+
2963
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
2964
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
2965
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
2966
+ SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
2967
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
2968
+ OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
2969
+ CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
2970
+ =========================================
2971
+ END OF setprototypeof@1.2.0 AND INFORMATION
2972
+
2973
+ %% shebang-command@2.0.0 NOTICES AND INFORMATION BEGIN HERE
2974
+ =========================================
2975
+ MIT License
2976
+
2977
+ Copyright (c) Kevin Mårtensson <kevinmartensson@gmail.com> (github.com/kevva)
2978
+
2979
+ 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:
2980
+
2981
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
2982
+
2983
+ 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.
2984
+ =========================================
2985
+ END OF shebang-command@2.0.0 AND INFORMATION
2986
+
2987
+ %% shebang-regex@3.0.0 NOTICES AND INFORMATION BEGIN HERE
2988
+ =========================================
2989
+ MIT License
2990
+
2991
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
2992
+
2993
+ 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:
2994
+
2995
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
2996
+
2997
+ 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.
2998
+ =========================================
2999
+ END OF shebang-regex@3.0.0 AND INFORMATION
3000
+
3001
+ %% side-channel-list@1.0.0 NOTICES AND INFORMATION BEGIN HERE
3002
+ =========================================
3003
+ MIT License
3004
+
3005
+ Copyright (c) 2024 Jordan Harband
3006
+
3007
+ Permission is hereby granted, free of charge, to any person obtaining a copy
3008
+ of this software and associated documentation files (the "Software"), to deal
3009
+ in the Software without restriction, including without limitation the rights
3010
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3011
+ copies of the Software, and to permit persons to whom the Software is
3012
+ furnished to do so, subject to the following conditions:
3013
+
3014
+ The above copyright notice and this permission notice shall be included in all
3015
+ copies or substantial portions of the Software.
3016
+
3017
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3018
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3019
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3020
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3021
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3022
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
3023
+ SOFTWARE.
3024
+ =========================================
3025
+ END OF side-channel-list@1.0.0 AND INFORMATION
3026
+
3027
+ %% side-channel-map@1.0.1 NOTICES AND INFORMATION BEGIN HERE
3028
+ =========================================
3029
+ MIT License
3030
+
3031
+ Copyright (c) 2024 Jordan Harband
3032
+
3033
+ Permission is hereby granted, free of charge, to any person obtaining a copy
3034
+ of this software and associated documentation files (the "Software"), to deal
3035
+ in the Software without restriction, including without limitation the rights
3036
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3037
+ copies of the Software, and to permit persons to whom the Software is
3038
+ furnished to do so, subject to the following conditions:
3039
+
3040
+ The above copyright notice and this permission notice shall be included in all
3041
+ copies or substantial portions of the Software.
3042
+
3043
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3044
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3045
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3046
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3047
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3048
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
3049
+ SOFTWARE.
3050
+ =========================================
3051
+ END OF side-channel-map@1.0.1 AND INFORMATION
3052
+
3053
+ %% side-channel-weakmap@1.0.2 NOTICES AND INFORMATION BEGIN HERE
3054
+ =========================================
3055
+ MIT License
3056
+
3057
+ Copyright (c) 2019 Jordan Harband
3058
+
3059
+ Permission is hereby granted, free of charge, to any person obtaining a copy
3060
+ of this software and associated documentation files (the "Software"), to deal
3061
+ in the Software without restriction, including without limitation the rights
3062
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3063
+ copies of the Software, and to permit persons to whom the Software is
3064
+ furnished to do so, subject to the following conditions:
3065
+
3066
+ The above copyright notice and this permission notice shall be included in all
3067
+ copies or substantial portions of the Software.
3068
+
3069
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3070
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3071
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3072
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3073
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3074
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
3075
+ SOFTWARE.
3076
+ =========================================
3077
+ END OF side-channel-weakmap@1.0.2 AND INFORMATION
3078
+
3079
+ %% side-channel@1.1.0 NOTICES AND INFORMATION BEGIN HERE
3080
+ =========================================
3081
+ MIT License
3082
+
3083
+ Copyright (c) 2019 Jordan Harband
3084
+
3085
+ Permission is hereby granted, free of charge, to any person obtaining a copy
3086
+ of this software and associated documentation files (the "Software"), to deal
3087
+ in the Software without restriction, including without limitation the rights
3088
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3089
+ copies of the Software, and to permit persons to whom the Software is
3090
+ furnished to do so, subject to the following conditions:
3091
+
3092
+ The above copyright notice and this permission notice shall be included in all
3093
+ copies or substantial portions of the Software.
3094
+
3095
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3096
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3097
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3098
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3099
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3100
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
3101
+ SOFTWARE.
3102
+ =========================================
3103
+ END OF side-channel@1.1.0 AND INFORMATION
3104
+
3105
+ %% signal-exit@3.0.7 NOTICES AND INFORMATION BEGIN HERE
3106
+ =========================================
3107
+ The ISC License
3108
+
3109
+ Copyright (c) 2015, Contributors
3110
+
3111
+ Permission to use, copy, modify, and/or distribute this software
3112
+ for any purpose with or without fee is hereby granted, provided
3113
+ that the above copyright notice and this permission notice
3114
+ appear in all copies.
3115
+
3116
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
3117
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
3118
+ OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE
3119
+ LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES
3120
+ OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
3121
+ WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
3122
+ ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
3123
+ =========================================
3124
+ END OF signal-exit@3.0.7 AND INFORMATION
3125
+
3126
+ %% smart-buffer@4.2.0 NOTICES AND INFORMATION BEGIN HERE
3127
+ =========================================
3128
+ The MIT License (MIT)
3129
+
3130
+ Copyright (c) 2013-2017 Josh Glazebrook
3131
+
3132
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
3133
+ this software and associated documentation files (the "Software"), to deal in
3134
+ the Software without restriction, including without limitation the rights to
3135
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
3136
+ the Software, and to permit persons to whom the Software is furnished to do so,
3137
+ subject to the following conditions:
3138
+
3139
+ The above copyright notice and this permission notice shall be included in all
3140
+ copies or substantial portions of the Software.
3141
+
3142
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3143
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
3144
+ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
3145
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
3146
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
3147
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
3148
+ =========================================
3149
+ END OF smart-buffer@4.2.0 AND INFORMATION
3150
+
3151
+ %% socks-proxy-agent@8.0.5 NOTICES AND INFORMATION BEGIN HERE
3152
+ =========================================
3153
+ (The MIT License)
3154
+
3155
+ Copyright (c) 2013 Nathan Rajlich <nathan@tootallnate.net>
3156
+
3157
+ Permission is hereby granted, free of charge, to any person obtaining
3158
+ a copy of this software and associated documentation files (the
3159
+ 'Software'), to deal in the Software without restriction, including
3160
+ without limitation the rights to use, copy, modify, merge, publish,
3161
+ distribute, sublicense, and/or sell copies of the Software, and to
3162
+ permit persons to whom the Software is furnished to do so, subject to
3163
+ the following conditions:
3164
+
3165
+ The above copyright notice and this permission notice shall be
3166
+ included in all copies or substantial portions of the Software.
3167
+
3168
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
3169
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
3170
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
3171
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
3172
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
3173
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
3174
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
3175
+ =========================================
3176
+ END OF socks-proxy-agent@8.0.5 AND INFORMATION
3177
+
3178
+ %% socks@2.8.3 NOTICES AND INFORMATION BEGIN HERE
3179
+ =========================================
3180
+ The MIT License (MIT)
3181
+
3182
+ Copyright (c) 2013 Josh Glazebrook
3183
+
3184
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
3185
+ this software and associated documentation files (the "Software"), to deal in
3186
+ the Software without restriction, including without limitation the rights to
3187
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
3188
+ the Software, and to permit persons to whom the Software is furnished to do so,
3189
+ subject to the following conditions:
3190
+
3191
+ The above copyright notice and this permission notice shall be included in all
3192
+ copies or substantial portions of the Software.
3193
+
3194
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3195
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
3196
+ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
3197
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
3198
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
3199
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
3200
+ =========================================
3201
+ END OF socks@2.8.3 AND INFORMATION
3202
+
3203
+ %% sprintf-js@1.1.3 NOTICES AND INFORMATION BEGIN HERE
3204
+ =========================================
3205
+ Copyright (c) 2007-present, Alexandru Mărășteanu <hello@alexei.ro>
3206
+ All rights reserved.
3207
+
3208
+ Redistribution and use in source and binary forms, with or without
3209
+ modification, are permitted provided that the following conditions are met:
3210
+ * Redistributions of source code must retain the above copyright
3211
+ notice, this list of conditions and the following disclaimer.
3212
+ * Redistributions in binary form must reproduce the above copyright
3213
+ notice, this list of conditions and the following disclaimer in the
3214
+ documentation and/or other materials provided with the distribution.
3215
+ * Neither the name of this software nor the names of its contributors may be
3216
+ used to endorse or promote products derived from this software without
3217
+ specific prior written permission.
3218
+
3219
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
3220
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
3221
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
3222
+ DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR
3223
+ ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
3224
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
3225
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
3226
+ ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
3227
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
3228
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3229
+ =========================================
3230
+ END OF sprintf-js@1.1.3 AND INFORMATION
3231
+
3232
+ %% statuses@2.0.2 NOTICES AND INFORMATION BEGIN HERE
3233
+ =========================================
3234
+ The MIT License (MIT)
3235
+
3236
+ Copyright (c) 2014 Jonathan Ong <me@jongleberry.com>
3237
+ Copyright (c) 2016 Douglas Christopher Wilson <doug@somethingdoug.com>
3238
+
3239
+ Permission is hereby granted, free of charge, to any person obtaining a copy
3240
+ of this software and associated documentation files (the "Software"), to deal
3241
+ in the Software without restriction, including without limitation the rights
3242
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3243
+ copies of the Software, and to permit persons to whom the Software is
3244
+ furnished to do so, subject to the following conditions:
3245
+
3246
+ The above copyright notice and this permission notice shall be included in
3247
+ all copies or substantial portions of the Software.
3248
+
3249
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3250
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3251
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3252
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3253
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3254
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
3255
+ THE SOFTWARE.
3256
+ =========================================
3257
+ END OF statuses@2.0.2 AND INFORMATION
3258
+
3259
+ %% toidentifier@1.0.1 NOTICES AND INFORMATION BEGIN HERE
3260
+ =========================================
3261
+ MIT License
3262
+
3263
+ Copyright (c) 2016 Douglas Christopher Wilson <doug@somethingdoug.com>
3264
+
3265
+ Permission is hereby granted, free of charge, to any person obtaining a copy
3266
+ of this software and associated documentation files (the "Software"), to deal
3267
+ in the Software without restriction, including without limitation the rights
3268
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3269
+ copies of the Software, and to permit persons to whom the Software is
3270
+ furnished to do so, subject to the following conditions:
3271
+
3272
+ The above copyright notice and this permission notice shall be included in all
3273
+ copies or substantial portions of the Software.
3274
+
3275
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3276
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3277
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3278
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3279
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3280
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
3281
+ SOFTWARE.
3282
+ =========================================
3283
+ END OF toidentifier@1.0.1 AND INFORMATION
3284
+
3285
+ %% type-is@2.0.1 NOTICES AND INFORMATION BEGIN HERE
3286
+ =========================================
3287
+ (The MIT License)
3288
+
3289
+ Copyright (c) 2014 Jonathan Ong <me@jongleberry.com>
3290
+ Copyright (c) 2014-2015 Douglas Christopher Wilson <doug@somethingdoug.com>
3291
+
3292
+ Permission is hereby granted, free of charge, to any person obtaining
3293
+ a copy of this software and associated documentation files (the
3294
+ 'Software'), to deal in the Software without restriction, including
3295
+ without limitation the rights to use, copy, modify, merge, publish,
3296
+ distribute, sublicense, and/or sell copies of the Software, and to
3297
+ permit persons to whom the Software is furnished to do so, subject to
3298
+ the following conditions:
3299
+
3300
+ The above copyright notice and this permission notice shall be
3301
+ included in all copies or substantial portions of the Software.
3302
+
3303
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
3304
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
3305
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
3306
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
3307
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
3308
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
3309
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
3310
+ =========================================
3311
+ END OF type-is@2.0.1 AND INFORMATION
3312
+
3313
+ %% unpipe@1.0.0 NOTICES AND INFORMATION BEGIN HERE
3314
+ =========================================
3315
+ (The MIT License)
3316
+
3317
+ Copyright (c) 2015 Douglas Christopher Wilson <doug@somethingdoug.com>
3318
+
3319
+ Permission is hereby granted, free of charge, to any person obtaining
3320
+ a copy of this software and associated documentation files (the
3321
+ 'Software'), to deal in the Software without restriction, including
3322
+ without limitation the rights to use, copy, modify, merge, publish,
3323
+ distribute, sublicense, and/or sell copies of the Software, and to
3324
+ permit persons to whom the Software is furnished to do so, subject to
3325
+ the following conditions:
3326
+
3327
+ The above copyright notice and this permission notice shall be
3328
+ included in all copies or substantial portions of the Software.
3329
+
3330
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
3331
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
3332
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
3333
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
3334
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
3335
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
3336
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
3337
+ =========================================
3338
+ END OF unpipe@1.0.0 AND INFORMATION
3339
+
3340
+ %% vary@1.1.2 NOTICES AND INFORMATION BEGIN HERE
3341
+ =========================================
3342
+ (The MIT License)
3343
+
3344
+ Copyright (c) 2014-2017 Douglas Christopher Wilson
3345
+
3346
+ Permission is hereby granted, free of charge, to any person obtaining
3347
+ a copy of this software and associated documentation files (the
3348
+ 'Software'), to deal in the Software without restriction, including
3349
+ without limitation the rights to use, copy, modify, merge, publish,
3350
+ distribute, sublicense, and/or sell copies of the Software, and to
3351
+ permit persons to whom the Software is furnished to do so, subject to
3352
+ the following conditions:
3353
+
3354
+ The above copyright notice and this permission notice shall be
3355
+ included in all copies or substantial portions of the Software.
3356
+
3357
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
3358
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
3359
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
3360
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
3361
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
3362
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
3363
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
3364
+ =========================================
3365
+ END OF vary@1.1.2 AND INFORMATION
3366
+
3367
+ %% which@2.0.2 NOTICES AND INFORMATION BEGIN HERE
3368
+ =========================================
3369
+ The ISC License
3370
+
3371
+ Copyright (c) Isaac Z. Schlueter and Contributors
3372
+
3373
+ Permission to use, copy, modify, and/or distribute this software for any
3374
+ purpose with or without fee is hereby granted, provided that the above
3375
+ copyright notice and this permission notice appear in all copies.
3376
+
3377
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
3378
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
3379
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
3380
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
3381
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
3382
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
3383
+ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
3384
+ =========================================
3385
+ END OF which@2.0.2 AND INFORMATION
3386
+
3387
+ %% wrappy@1.0.2 NOTICES AND INFORMATION BEGIN HERE
3388
+ =========================================
3389
+ The ISC License
3390
+
3391
+ Copyright (c) Isaac Z. Schlueter and Contributors
3392
+
3393
+ Permission to use, copy, modify, and/or distribute this software for any
3394
+ purpose with or without fee is hereby granted, provided that the above
3395
+ copyright notice and this permission notice appear in all copies.
3396
+
3397
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
3398
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
3399
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
3400
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
3401
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
3402
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
3403
+ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
3404
+ =========================================
3405
+ END OF wrappy@1.0.2 AND INFORMATION
3406
+
3407
+ %% ws@8.17.1 NOTICES AND INFORMATION BEGIN HERE
3408
+ =========================================
3409
+ Copyright (c) 2011 Einar Otto Stangvik <einaros@gmail.com>
3410
+ Copyright (c) 2013 Arnout Kazemier and contributors
3411
+ Copyright (c) 2016 Luigi Pinca and contributors
3412
+
3413
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
3414
+ this software and associated documentation files (the "Software"), to deal in
3415
+ the Software without restriction, including without limitation the rights to
3416
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
3417
+ the Software, and to permit persons to whom the Software is furnished to do so,
3418
+ subject to the following conditions:
3419
+
3420
+ The above copyright notice and this permission notice shall be included in all
3421
+ copies or substantial portions of the Software.
3422
+
3423
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3424
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
3425
+ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
3426
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
3427
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
3428
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
3429
+ =========================================
3430
+ END OF ws@8.17.1 AND INFORMATION
3431
+
3432
+ %% yaml@2.6.0 NOTICES AND INFORMATION BEGIN HERE
3433
+ =========================================
3434
+ Copyright Eemeli Aro <eemeli@gmail.com>
3435
+
3436
+ Permission to use, copy, modify, and/or distribute this software for any purpose
3437
+ with or without fee is hereby granted, provided that the above copyright notice
3438
+ and this permission notice appear in all copies.
3439
+
3440
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
3441
+ REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
3442
+ FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
3443
+ INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
3444
+ OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
3445
+ TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
3446
+ THIS SOFTWARE.
3447
+ =========================================
3448
+ END OF yaml@2.6.0 AND INFORMATION
3449
+
3450
+ %% yauzl@3.2.0 NOTICES AND INFORMATION BEGIN HERE
3451
+ =========================================
3452
+ The MIT License (MIT)
3453
+
3454
+ Copyright (c) 2014 Josh Wolfe
3455
+
3456
+ Permission is hereby granted, free of charge, to any person obtaining a copy
3457
+ of this software and associated documentation files (the "Software"), to deal
3458
+ in the Software without restriction, including without limitation the rights
3459
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3460
+ copies of the Software, and to permit persons to whom the Software is
3461
+ furnished to do so, subject to the following conditions:
3462
+
3463
+ The above copyright notice and this permission notice shall be included in all
3464
+ copies or substantial portions of the Software.
3465
+
3466
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3467
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3468
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3469
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3470
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3471
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
3472
+ SOFTWARE.
3473
+ =========================================
3474
+ END OF yauzl@3.2.0 AND INFORMATION
3475
+
3476
+ %% yazl@2.5.1 NOTICES AND INFORMATION BEGIN HERE
3477
+ =========================================
3478
+ The MIT License (MIT)
3479
+
3480
+ Copyright (c) 2014 Josh Wolfe
3481
+
3482
+ Permission is hereby granted, free of charge, to any person obtaining a copy
3483
+ of this software and associated documentation files (the "Software"), to deal
3484
+ in the Software without restriction, including without limitation the rights
3485
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3486
+ copies of the Software, and to permit persons to whom the Software is
3487
+ furnished to do so, subject to the following conditions:
3488
+
3489
+ The above copyright notice and this permission notice shall be included in all
3490
+ copies or substantial portions of the Software.
3491
+
3492
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3493
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3494
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3495
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3496
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3497
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
3498
+ SOFTWARE.
3499
+ =========================================
3500
+ END OF yazl@2.5.1 AND INFORMATION
3501
+
3502
+ %% zod-to-json-schema@3.25.1 NOTICES AND INFORMATION BEGIN HERE
3503
+ =========================================
3504
+ ISC License
3505
+
3506
+ Copyright (c) 2020, Stefan Terdell
3507
+
3508
+ Permission to use, copy, modify, and/or distribute this software for any
3509
+ purpose with or without fee is hereby granted, provided that the above
3510
+ copyright notice and this permission notice appear in all copies.
3511
+
3512
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
3513
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
3514
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
3515
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
3516
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
3517
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
3518
+ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
3519
+ =========================================
3520
+ END OF zod-to-json-schema@3.25.1 AND INFORMATION
3521
+
3522
+ %% zod@4.3.5 NOTICES AND INFORMATION BEGIN HERE
3523
+ =========================================
3524
+ MIT License
3525
+
3526
+ Copyright (c) 2025 Colin McDonnell
3527
+
3528
+ Permission is hereby granted, free of charge, to any person obtaining a copy
3529
+ of this software and associated documentation files (the "Software"), to deal
3530
+ in the Software without restriction, including without limitation the rights
3531
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3532
+ copies of the Software, and to permit persons to whom the Software is
3533
+ furnished to do so, subject to the following conditions:
3534
+
3535
+ The above copyright notice and this permission notice shall be included in all
3536
+ copies or substantial portions of the Software.
3537
+
3538
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3539
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3540
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3541
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3542
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3543
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
3544
+ SOFTWARE.
3545
+ =========================================
3546
+ END OF zod@4.3.5 AND INFORMATION
3547
+
3548
+ SUMMARY BEGIN HERE
3549
+ =========================================
3550
+ Total Packages: 133
3551
+ =========================================
3552
+ END OF SUMMARY