You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1812 lines
88 KiB

  1. GitLens
  2. THIRD-PARTY SOFTWARE NOTICES AND INFORMATION
  3. This project incorporates components from the projects listed below.
  4. 1. @microsoft/fast-element version 1.11.0 (https://github.com/Microsoft/fast)
  5. 2. @microsoft/fast-react-wrapper version 0.3.15 (https://github.com/Microsoft/fast)
  6. 3. @octokit/core version 4.1.0 (https://github.com/octokit/core.js)
  7. 4. @opentelemetry/api version 1.3.0 (https://github.com/open-telemetry/opentelemetry-js)
  8. 5. @opentelemetry/exporter-trace-otlp-http version 0.34.0 (https://github.com/open-telemetry/opentelemetry-js)
  9. 6. @opentelemetry/sdk-trace-base version 1.8.0 (https://github.com/open-telemetry/opentelemetry-js)
  10. 7. @vscode/codicons version 0.0.32 (https://github.com/microsoft/vscode-codicons)
  11. 8. @vscode/webview-ui-toolkit version 1.1.0 (https://github.com/microsoft/vscode-webview-ui-toolkit)
  12. 9. ansi-regex version 6.0.1 (https://github.com/chalk/ansi-regex)
  13. 10. billboard.js version 3.6.3 (https://github.com/naver/billboard.js)
  14. 11. chroma-js version 2.4.2 (https://github.com/gka/chroma.js)
  15. 12. https-proxy-agent version 5.0.1 (https://github.com/TooTallNate/node-https-proxy-agent)
  16. 13. iconv-lite version 0.6.3 (https://github.com/ashtuchkin/iconv-lite)
  17. 14. lit version 2.3.1 (https://github.com/lit/lit)
  18. 15. lodash-es version 4.17.21 (https://github.com/lodash/lodash)
  19. 16. md5.js version 1.3.5 (https://github.com/crypto-browserify/md5.js)
  20. 17. microsoft/vscode (https://github.com/microsoft/vscode)
  21. 18. node-fetch version 2.6.7 (https://github.com/bitinn/node-fetch)
  22. 19. os-browserify version 0.3.0 (https://github.com/CoderPuppy/os-browserify)
  23. 20. path-browserify version 1.0.1 (https://github.com/browserify/path-browserify)
  24. 21. react-dom version 16.8.4 (https://github.com/facebook/react)
  25. 22. react version 16.8.4 (https://github.com/facebook/react)
  26. 23. sindresorhus/is-fullwidth-code-point (https://github.com/sindresorhus/is-fullwidth-code-point)
  27. 24. sindresorhus/string-width (https://github.com/sindresorhus/string-width)
  28. 25. sortablejs version 1.15.0 (https://github.com/SortableJS/Sortable)
  29. %% @microsoft/fast-element NOTICES AND INFORMATION BEGIN HERE
  30. =========================================
  31. # FAST Element
  32. [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
  33. [![npm version](https://badge.fury.io/js/%40microsoft%2Ffast-element.svg)](https://badge.fury.io/js/%40microsoft%2Ffast-element)
  34. The `fast-element` library is a lightweight means to easily build performant, memory-efficient, standards-compliant Web Components. FAST Elements work in every major browser and can be used in combination with any front-end framework or even without a framework.
  35. ## Installation
  36. ### From NPM
  37. To install the `fast-element` library, use either `npm` or `yarn` as follows:
  38. ```shell
  39. npm install --save @microsoft/fast-element
  40. ```
  41. ```shell
  42. yarn add @microsoft/fast-element
  43. ```
  44. Within your JavaScript or TypeScript code, you can then import library APIs like this:
  45. ```ts
  46. import { FASTElement } from '@microsoft/fast-element';
  47. ```
  48. :::tip
  49. Looking for a setup that integrates with a particular front-end framework or bundler? Check out [our integration docs](../integrations/introduction.md).
  50. :::
  51. ### From CDN
  52. A pre-bundled script that contains all APIs needed to build web components with FAST Element is available on CDN. You can use this script by adding [`type="module"`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules) to the script element and then importing from the CDN.
  53. ```html
  54. <!DOCTYPE html>
  55. <html lang="en">
  56. <head>
  57. <script type="module">
  58. import { FASTElement } from "https://cdn.jsdelivr.net/npm/@microsoft/fast-element/dist/fast-element.min.js";
  59. // your code here
  60. </script>
  61. </head>
  62. <!-- ... -->
  63. </html>
  64. ```
  65. The markup above always references the latest release. When deploying to production, you will want to ship with a specific version. Here's an example of the markup for that:
  66. ```html
  67. <script type="module" src="https://cdn.jsdelivr.net/npm/@microsoft/fast-element@1.6.2/dist/fast-element.min.js"></script>
  68. ```
  69. :::note
  70. For simplicity, examples throughout the documentation will assume the library has been installed from NPM, but you can always replace the import location with the CDN URL.
  71. :::
  72. :::tip
  73. Looking for a quick guide on building components? Check out [our Cheat Sheet](../resources/cheat-sheet.md#building-components).
  74. :::
  75. =========================================
  76. END OF @microsoft/fast-element NOTICES AND INFORMATION
  77. %% @microsoft/fast-react-wrapper NOTICES AND INFORMATION BEGIN HERE
  78. =========================================
  79. # FAST React Wrapper
  80. [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
  81. [![npm version](https://badge.fury.io/js/%40microsoft%2Ffast-react-wrapper.svg)](https://badge.fury.io/js/%40microsoft%2Ffast-react-wrapper)
  82. The `fast-react-wrapper` package contains a utility that enables automatically wrapping Web Components in a React component for ease of integration into React projects.
  83. ## Installation
  84. ### From NPM
  85. To install the `fast-react-wrapper` library, use either `npm` or `yarn` as follows:
  86. ```shell
  87. npm install --save @microsoft/fast-react-wrapper
  88. ```
  89. ```shell
  90. yarn add @microsoft/fast-react-wrapper
  91. ```
  92. Within your JavaScript or TypeScript code, you can then and use the wrapper like this:
  93. ```ts
  94. import React from 'react';
  95. import { provideReactWrapper } from '@microsoft/fast-react-wrapper';
  96. const { wrap } = provideReactWrapper(React);
  97. const MyComponent = wrap(MyComponent);
  98. ```
  99. For additional wrapper settings and more information on integrating with Design Systems, see [our integration docs](https://fast.design/docs/integrations/react).
  100. =========================================
  101. END OF @microsoft/fast-react-wrapper NOTICES AND INFORMATION
  102. %% @octokit/core NOTICES AND INFORMATION BEGIN HERE
  103. =========================================
  104. The MIT License
  105. Copyright (c) 2019 Octokit contributors
  106. Permission is hereby granted, free of charge, to any person obtaining a copy
  107. of this software and associated documentation files (the "Software"), to deal
  108. in the Software without restriction, including without limitation the rights
  109. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  110. copies of the Software, and to permit persons to whom the Software is
  111. furnished to do so, subject to the following conditions:
  112. The above copyright notice and this permission notice shall be included in
  113. all copies or substantial portions of the Software.
  114. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  115. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  116. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  117. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  118. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  119. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  120. THE SOFTWARE.
  121. =========================================
  122. END OF @octokit/core NOTICES AND INFORMATION
  123. %% @opentelemetry/api NOTICES AND INFORMATION BEGIN HERE
  124. =========================================
  125. Apache License
  126. Version 2.0, January 2004
  127. http://www.apache.org/licenses/
  128. TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
  129. 1. Definitions.
  130. "License" shall mean the terms and conditions for use, reproduction,
  131. and distribution as defined by Sections 1 through 9 of this document.
  132. "Licensor" shall mean the copyright owner or entity authorized by
  133. the copyright owner that is granting the License.
  134. "Legal Entity" shall mean the union of the acting entity and all
  135. other entities that control, are controlled by, or are under common
  136. control with that entity. For the purposes of this definition,
  137. "control" means (i) the power, direct or indirect, to cause the
  138. direction or management of such entity, whether by contract or
  139. otherwise, or (ii) ownership of fifty percent (50%) or more of the
  140. outstanding shares, or (iii) beneficial ownership of such entity.
  141. "You" (or "Your") shall mean an individual or Legal Entity
  142. exercising permissions granted by this License.
  143. "Source" form shall mean the preferred form for making modifications,
  144. including but not limited to software source code, documentation
  145. source, and configuration files.
  146. "Object" form shall mean any form resulting from mechanical
  147. transformation or translation of a Source form, including but
  148. not limited to compiled object code, generated documentation,
  149. and conversions to other media types.
  150. "Work" shall mean the work of authorship, whether in Source or
  151. Object form, made available under the License, as indicated by a
  152. copyright notice that is included in or attached to the work
  153. (an example is provided in the Appendix below).
  154. "Derivative Works" shall mean any work, whether in Source or Object
  155. form, that is based on (or derived from) the Work and for which the
  156. editorial revisions, annotations, elaborations, or other modifications
  157. represent, as a whole, an original work of authorship. For the purposes
  158. of this License, Derivative Works shall not include works that remain
  159. separable from, or merely link (or bind by name) to the interfaces of,
  160. the Work and Derivative Works thereof.
  161. "Contribution" shall mean any work of authorship, including
  162. the original version of the Work and any modifications or additions
  163. to that Work or Derivative Works thereof, that is intentionally
  164. submitted to Licensor for inclusion in the Work by the copyright owner
  165. or by an individual or Legal Entity authorized to submit on behalf of
  166. the copyright owner. For the purposes of this definition, "submitted"
  167. means any form of electronic, verbal, or written communication sent
  168. to the Licensor or its representatives, including but not limited to
  169. communication on electronic mailing lists, source code control systems,
  170. and issue tracking systems that are managed by, or on behalf of, the
  171. Licensor for the purpose of discussing and improving the Work, but
  172. excluding communication that is conspicuously marked or otherwise
  173. designated in writing by the copyright owner as "Not a Contribution."
  174. "Contributor" shall mean Licensor and any individual or Legal Entity
  175. on behalf of whom a Contribution has been received by Licensor and
  176. subsequently incorporated within the Work.
  177. 2. Grant of Copyright License. Subject to the terms and conditions of
  178. this License, each Contributor hereby grants to You a perpetual,
  179. worldwide, non-exclusive, no-charge, royalty-free, irrevocable
  180. copyright license to reproduce, prepare Derivative Works of,
  181. publicly display, publicly perform, sublicense, and distribute the
  182. Work and such Derivative Works in Source or Object form.
  183. 3. Grant of Patent License. Subject to the terms and conditions of
  184. this License, each Contributor hereby grants to You a perpetual,
  185. worldwide, non-exclusive, no-charge, royalty-free, irrevocable
  186. (except as stated in this section) patent license to make, have made,
  187. use, offer to sell, sell, import, and otherwise transfer the Work,
  188. where such license applies only to those patent claims licensable
  189. by such Contributor that are necessarily infringed by their
  190. Contribution(s) alone or by combination of their Contribution(s)
  191. with the Work to which such Contribution(s) was submitted. If You
  192. institute patent litigation against any entity (including a
  193. cross-claim or counterclaim in a lawsuit) alleging that the Work
  194. or a Contribution incorporated within the Work constitutes direct
  195. or contributory patent infringement, then any patent licenses
  196. granted to You under this License for that Work shall terminate
  197. as of the date such litigation is filed.
  198. 4. Redistribution. You may reproduce and distribute copies of the
  199. Work or Derivative Works thereof in any medium, with or without
  200. modifications, and in Source or Object form, provided that You
  201. meet the following conditions:
  202. (a) You must give any other recipients of the Work or
  203. Derivative Works a copy of this License; and
  204. (b) You must cause any modified files to carry prominent notices
  205. stating that You changed the files; and
  206. (c) You must retain, in the Source form of any Derivative Works
  207. that You distribute, all copyright, patent, trademark, and
  208. attribution notices from the Source form of the Work,
  209. excluding those notices that do not pertain to any part of
  210. the Derivative Works; and
  211. (d) If the Work includes a "NOTICE" text file as part of its
  212. distribution, then any Derivative Works that You distribute must
  213. include a readable copy of the attribution notices contained
  214. within such NOTICE file, excluding those notices that do not
  215. pertain to any part of the Derivative Works, in at least one
  216. of the following places: within a NOTICE text file distributed
  217. as part of the Derivative Works; within the Source form or
  218. documentation, if provided along with the Derivative Works; or,
  219. within a display generated by the Derivative Works, if and
  220. wherever such third-party notices normally appear. The contents
  221. of the NOTICE file are for informational purposes only and
  222. do not modify the License. You may add Your own attribution
  223. notices within Derivative Works that You distribute, alongside
  224. or as an addendum to the NOTICE text from the Work, provided
  225. that such additional attribution notices cannot be construed
  226. as modifying the License.
  227. You may add Your own copyright statement to Your modifications and
  228. may provide additional or different license terms and conditions
  229. for use, reproduction, or distribution of Your modifications, or
  230. for any such Derivative Works as a whole, provided Your use,
  231. reproduction, and distribution of the Work otherwise complies with
  232. the conditions stated in this License.
  233. 5. Submission of Contributions. Unless You explicitly state otherwise,
  234. any Contribution intentionally submitted for inclusion in the Work
  235. by You to the Licensor shall be under the terms and conditions of
  236. this License, without any additional terms or conditions.
  237. Notwithstanding the above, nothing herein shall supersede or modify
  238. the terms of any separate license agreement you may have executed
  239. with Licensor regarding such Contributions.
  240. 6. Trademarks. This License does not grant permission to use the trade
  241. names, trademarks, service marks, or product names of the Licensor,
  242. except as required for reasonable and customary use in describing the
  243. origin of the Work and reproducing the content of the NOTICE file.
  244. 7. Disclaimer of Warranty. Unless required by applicable law or
  245. agreed to in writing, Licensor provides the Work (and each
  246. Contributor provides its Contributions) on an "AS IS" BASIS,
  247. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
  248. implied, including, without limitation, any warranties or conditions
  249. of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
  250. PARTICULAR PURPOSE. You are solely responsible for determining the
  251. appropriateness of using or redistributing the Work and assume any
  252. risks associated with Your exercise of permissions under this License.
  253. 8. Limitation of Liability. In no event and under no legal theory,
  254. whether in tort (including negligence), contract, or otherwise,
  255. unless required by applicable law (such as deliberate and grossly
  256. negligent acts) or agreed to in writing, shall any Contributor be
  257. liable to You for damages, including any direct, indirect, special,
  258. incidental, or consequential damages of any character arising as a
  259. result of this License or out of the use or inability to use the
  260. Work (including but not limited to damages for loss of goodwill,
  261. work stoppage, computer failure or malfunction, or any and all
  262. other commercial damages or losses), even if such Contributor
  263. has been advised of the possibility of such damages.
  264. 9. Accepting Warranty or Additional Liability. While redistributing
  265. the Work or Derivative Works thereof, You may choose to offer,
  266. and charge a fee for, acceptance of support, warranty, indemnity,
  267. or other liability obligations and/or rights consistent with this
  268. License. However, in accepting such obligations, You may act only
  269. on Your own behalf and on Your sole responsibility, not on behalf
  270. of any other Contributor, and only if You agree to indemnify,
  271. defend, and hold each Contributor harmless for any liability
  272. incurred by, or claims asserted against, such Contributor by reason
  273. of your accepting any such warranty or additional liability.
  274. END OF TERMS AND CONDITIONS
  275. APPENDIX: How to apply the Apache License to your work.
  276. To apply the Apache License to your work, attach the following
  277. boilerplate notice, with the fields enclosed by brackets "[]"
  278. replaced with your own identifying information. (Don't include
  279. the brackets!) The text should be enclosed in the appropriate
  280. comment syntax for the file format. We also recommend that a
  281. file or class name and description of purpose be included on the
  282. same "printed page" as the copyright notice for easier
  283. identification within third-party archives.
  284. Copyright [yyyy] [name of copyright owner]
  285. Licensed under the Apache License, Version 2.0 (the "License");
  286. you may not use this file except in compliance with the License.
  287. You may obtain a copy of the License at
  288. http://www.apache.org/licenses/LICENSE-2.0
  289. Unless required by applicable law or agreed to in writing, software
  290. distributed under the License is distributed on an "AS IS" BASIS,
  291. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  292. See the License for the specific language governing permissions and
  293. limitations under the License.
  294. =========================================
  295. END OF @opentelemetry/api NOTICES AND INFORMATION
  296. %% @opentelemetry/exporter-trace-otlp-http NOTICES AND INFORMATION BEGIN HERE
  297. =========================================
  298. Apache License
  299. Version 2.0, January 2004
  300. http://www.apache.org/licenses/
  301. TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
  302. 1. Definitions.
  303. "License" shall mean the terms and conditions for use, reproduction,
  304. and distribution as defined by Sections 1 through 9 of this document.
  305. "Licensor" shall mean the copyright owner or entity authorized by
  306. the copyright owner that is granting the License.
  307. "Legal Entity" shall mean the union of the acting entity and all
  308. other entities that control, are controlled by, or are under common
  309. control with that entity. For the purposes of this definition,
  310. "control" means (i) the power, direct or indirect, to cause the
  311. direction or management of such entity, whether by contract or
  312. otherwise, or (ii) ownership of fifty percent (50%) or more of the
  313. outstanding shares, or (iii) beneficial ownership of such entity.
  314. "You" (or "Your") shall mean an individual or Legal Entity
  315. exercising permissions granted by this License.
  316. "Source" form shall mean the preferred form for making modifications,
  317. including but not limited to software source code, documentation
  318. source, and configuration files.
  319. "Object" form shall mean any form resulting from mechanical
  320. transformation or translation of a Source form, including but
  321. not limited to compiled object code, generated documentation,
  322. and conversions to other media types.
  323. "Work" shall mean the work of authorship, whether in Source or
  324. Object form, made available under the License, as indicated by a
  325. copyright notice that is included in or attached to the work
  326. (an example is provided in the Appendix below).
  327. "Derivative Works" shall mean any work, whether in Source or Object
  328. form, that is based on (or derived from) the Work and for which the
  329. editorial revisions, annotations, elaborations, or other modifications
  330. represent, as a whole, an original work of authorship. For the purposes
  331. of this License, Derivative Works shall not include works that remain
  332. separable from, or merely link (or bind by name) to the interfaces of,
  333. the Work and Derivative Works thereof.
  334. "Contribution" shall mean any work of authorship, including
  335. the original version of the Work and any modifications or additions
  336. to that Work or Derivative Works thereof, that is intentionally
  337. submitted to Licensor for inclusion in the Work by the copyright owner
  338. or by an individual or Legal Entity authorized to submit on behalf of
  339. the copyright owner. For the purposes of this definition, "submitted"
  340. means any form of electronic, verbal, or written communication sent
  341. to the Licensor or its representatives, including but not limited to
  342. communication on electronic mailing lists, source code control systems,
  343. and issue tracking systems that are managed by, or on behalf of, the
  344. Licensor for the purpose of discussing and improving the Work, but
  345. excluding communication that is conspicuously marked or otherwise
  346. designated in writing by the copyright owner as "Not a Contribution."
  347. "Contributor" shall mean Licensor and any individual or Legal Entity
  348. on behalf of whom a Contribution has been received by Licensor and
  349. subsequently incorporated within the Work.
  350. 2. Grant of Copyright License. Subject to the terms and conditions of
  351. this License, each Contributor hereby grants to You a perpetual,
  352. worldwide, non-exclusive, no-charge, royalty-free, irrevocable
  353. copyright license to reproduce, prepare Derivative Works of,
  354. publicly display, publicly perform, sublicense, and distribute the
  355. Work and such Derivative Works in Source or Object form.
  356. 3. Grant of Patent License. Subject to the terms and conditions of
  357. this License, each Contributor hereby grants to You a perpetual,
  358. worldwide, non-exclusive, no-charge, royalty-free, irrevocable
  359. (except as stated in this section) patent license to make, have made,
  360. use, offer to sell, sell, import, and otherwise transfer the Work,
  361. where such license applies only to those patent claims licensable
  362. by such Contributor that are necessarily infringed by their
  363. Contribution(s) alone or by combination of their Contribution(s)
  364. with the Work to which such Contribution(s) was submitted. If You
  365. institute patent litigation against any entity (including a
  366. cross-claim or counterclaim in a lawsuit) alleging that the Work
  367. or a Contribution incorporated within the Work constitutes direct
  368. or contributory patent infringement, then any patent licenses
  369. granted to You under this License for that Work shall terminate
  370. as of the date such litigation is filed.
  371. 4. Redistribution. You may reproduce and distribute copies of the
  372. Work or Derivative Works thereof in any medium, with or without
  373. modifications, and in Source or Object form, provided that You
  374. meet the following conditions:
  375. (a) You must give any other recipients of the Work or
  376. Derivative Works a copy of this License; and
  377. (b) You must cause any modified files to carry prominent notices
  378. stating that You changed the files; and
  379. (c) You must retain, in the Source form of any Derivative Works
  380. that You distribute, all copyright, patent, trademark, and
  381. attribution notices from the Source form of the Work,
  382. excluding those notices that do not pertain to any part of
  383. the Derivative Works; and
  384. (d) If the Work includes a "NOTICE" text file as part of its
  385. distribution, then any Derivative Works that You distribute must
  386. include a readable copy of the attribution notices contained
  387. within such NOTICE file, excluding those notices that do not
  388. pertain to any part of the Derivative Works, in at least one
  389. of the following places: within a NOTICE text file distributed
  390. as part of the Derivative Works; within the Source form or
  391. documentation, if provided along with the Derivative Works; or,
  392. within a display generated by the Derivative Works, if and
  393. wherever such third-party notices normally appear. The contents
  394. of the NOTICE file are for informational purposes only and
  395. do not modify the License. You may add Your own attribution
  396. notices within Derivative Works that You distribute, alongside
  397. or as an addendum to the NOTICE text from the Work, provided
  398. that such additional attribution notices cannot be construed
  399. as modifying the License.
  400. You may add Your own copyright statement to Your modifications and
  401. may provide additional or different license terms and conditions
  402. for use, reproduction, or distribution of Your modifications, or
  403. for any such Derivative Works as a whole, provided Your use,
  404. reproduction, and distribution of the Work otherwise complies with
  405. the conditions stated in this License.
  406. 5. Submission of Contributions. Unless You explicitly state otherwise,
  407. any Contribution intentionally submitted for inclusion in the Work
  408. by You to the Licensor shall be under the terms and conditions of
  409. this License, without any additional terms or conditions.
  410. Notwithstanding the above, nothing herein shall supersede or modify
  411. the terms of any separate license agreement you may have executed
  412. with Licensor regarding such Contributions.
  413. 6. Trademarks. This License does not grant permission to use the trade
  414. names, trademarks, service marks, or product names of the Licensor,
  415. except as required for reasonable and customary use in describing the
  416. origin of the Work and reproducing the content of the NOTICE file.
  417. 7. Disclaimer of Warranty. Unless required by applicable law or
  418. agreed to in writing, Licensor provides the Work (and each
  419. Contributor provides its Contributions) on an "AS IS" BASIS,
  420. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
  421. implied, including, without limitation, any warranties or conditions
  422. of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
  423. PARTICULAR PURPOSE. You are solely responsible for determining the
  424. appropriateness of using or redistributing the Work and assume any
  425. risks associated with Your exercise of permissions under this License.
  426. 8. Limitation of Liability. In no event and under no legal theory,
  427. whether in tort (including negligence), contract, or otherwise,
  428. unless required by applicable law (such as deliberate and grossly
  429. negligent acts) or agreed to in writing, shall any Contributor be
  430. liable to You for damages, including any direct, indirect, special,
  431. incidental, or consequential damages of any character arising as a
  432. result of this License or out of the use or inability to use the
  433. Work (including but not limited to damages for loss of goodwill,
  434. work stoppage, computer failure or malfunction, or any and all
  435. other commercial damages or losses), even if such Contributor
  436. has been advised of the possibility of such damages.
  437. 9. Accepting Warranty or Additional Liability. While redistributing
  438. the Work or Derivative Works thereof, You may choose to offer,
  439. and charge a fee for, acceptance of support, warranty, indemnity,
  440. or other liability obligations and/or rights consistent with this
  441. License. However, in accepting such obligations, You may act only
  442. on Your own behalf and on Your sole responsibility, not on behalf
  443. of any other Contributor, and only if You agree to indemnify,
  444. defend, and hold each Contributor harmless for any liability
  445. incurred by, or claims asserted against, such Contributor by reason
  446. of your accepting any such warranty or additional liability.
  447. END OF TERMS AND CONDITIONS
  448. APPENDIX: How to apply the Apache License to your work.
  449. To apply the Apache License to your work, attach the following
  450. boilerplate notice, with the fields enclosed by brackets "[]"
  451. replaced with your own identifying information. (Don't include
  452. the brackets!) The text should be enclosed in the appropriate
  453. comment syntax for the file format. We also recommend that a
  454. file or class name and description of purpose be included on the
  455. same "printed page" as the copyright notice for easier
  456. identification within third-party archives.
  457. Copyright [yyyy] [name of copyright owner]
  458. Licensed under the Apache License, Version 2.0 (the "License");
  459. you may not use this file except in compliance with the License.
  460. You may obtain a copy of the License at
  461. http://www.apache.org/licenses/LICENSE-2.0
  462. Unless required by applicable law or agreed to in writing, software
  463. distributed under the License is distributed on an "AS IS" BASIS,
  464. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  465. See the License for the specific language governing permissions and
  466. limitations under the License.
  467. =========================================
  468. END OF @opentelemetry/exporter-trace-otlp-http NOTICES AND INFORMATION
  469. %% @opentelemetry/sdk-trace-base NOTICES AND INFORMATION BEGIN HERE
  470. =========================================
  471. Apache License
  472. Version 2.0, January 2004
  473. http://www.apache.org/licenses/
  474. TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
  475. 1. Definitions.
  476. "License" shall mean the terms and conditions for use, reproduction,
  477. and distribution as defined by Sections 1 through 9 of this document.
  478. "Licensor" shall mean the copyright owner or entity authorized by
  479. the copyright owner that is granting the License.
  480. "Legal Entity" shall mean the union of the acting entity and all
  481. other entities that control, are controlled by, or are under common
  482. control with that entity. For the purposes of this definition,
  483. "control" means (i) the power, direct or indirect, to cause the
  484. direction or management of such entity, whether by contract or
  485. otherwise, or (ii) ownership of fifty percent (50%) or more of the
  486. outstanding shares, or (iii) beneficial ownership of such entity.
  487. "You" (or "Your") shall mean an individual or Legal Entity
  488. exercising permissions granted by this License.
  489. "Source" form shall mean the preferred form for making modifications,
  490. including but not limited to software source code, documentation
  491. source, and configuration files.
  492. "Object" form shall mean any form resulting from mechanical
  493. transformation or translation of a Source form, including but
  494. not limited to compiled object code, generated documentation,
  495. and conversions to other media types.
  496. "Work" shall mean the work of authorship, whether in Source or
  497. Object form, made available under the License, as indicated by a
  498. copyright notice that is included in or attached to the work
  499. (an example is provided in the Appendix below).
  500. "Derivative Works" shall mean any work, whether in Source or Object
  501. form, that is based on (or derived from) the Work and for which the
  502. editorial revisions, annotations, elaborations, or other modifications
  503. represent, as a whole, an original work of authorship. For the purposes
  504. of this License, Derivative Works shall not include works that remain
  505. separable from, or merely link (or bind by name) to the interfaces of,
  506. the Work and Derivative Works thereof.
  507. "Contribution" shall mean any work of authorship, including
  508. the original version of the Work and any modifications or additions
  509. to that Work or Derivative Works thereof, that is intentionally
  510. submitted to Licensor for inclusion in the Work by the copyright owner
  511. or by an individual or Legal Entity authorized to submit on behalf of
  512. the copyright owner. For the purposes of this definition, "submitted"
  513. means any form of electronic, verbal, or written communication sent
  514. to the Licensor or its representatives, including but not limited to
  515. communication on electronic mailing lists, source code control systems,
  516. and issue tracking systems that are managed by, or on behalf of, the
  517. Licensor for the purpose of discussing and improving the Work, but
  518. excluding communication that is conspicuously marked or otherwise
  519. designated in writing by the copyright owner as "Not a Contribution."
  520. "Contributor" shall mean Licensor and any individual or Legal Entity
  521. on behalf of whom a Contribution has been received by Licensor and
  522. subsequently incorporated within the Work.
  523. 2. Grant of Copyright License. Subject to the terms and conditions of
  524. this License, each Contributor hereby grants to You a perpetual,
  525. worldwide, non-exclusive, no-charge, royalty-free, irrevocable
  526. copyright license to reproduce, prepare Derivative Works of,
  527. publicly display, publicly perform, sublicense, and distribute the
  528. Work and such Derivative Works in Source or Object form.
  529. 3. Grant of Patent License. Subject to the terms and conditions of
  530. this License, each Contributor hereby grants to You a perpetual,
  531. worldwide, non-exclusive, no-charge, royalty-free, irrevocable
  532. (except as stated in this section) patent license to make, have made,
  533. use, offer to sell, sell, import, and otherwise transfer the Work,
  534. where such license applies only to those patent claims licensable
  535. by such Contributor that are necessarily infringed by their
  536. Contribution(s) alone or by combination of their Contribution(s)
  537. with the Work to which such Contribution(s) was submitted. If You
  538. institute patent litigation against any entity (including a
  539. cross-claim or counterclaim in a lawsuit) alleging that the Work
  540. or a Contribution incorporated within the Work constitutes direct
  541. or contributory patent infringement, then any patent licenses
  542. granted to You under this License for that Work shall terminate
  543. as of the date such litigation is filed.
  544. 4. Redistribution. You may reproduce and distribute copies of the
  545. Work or Derivative Works thereof in any medium, with or without
  546. modifications, and in Source or Object form, provided that You
  547. meet the following conditions:
  548. (a) You must give any other recipients of the Work or
  549. Derivative Works a copy of this License; and
  550. (b) You must cause any modified files to carry prominent notices
  551. stating that You changed the files; and
  552. (c) You must retain, in the Source form of any Derivative Works
  553. that You distribute, all copyright, patent, trademark, and
  554. attribution notices from the Source form of the Work,
  555. excluding those notices that do not pertain to any part of
  556. the Derivative Works; and
  557. (d) If the Work includes a "NOTICE" text file as part of its
  558. distribution, then any Derivative Works that You distribute must
  559. include a readable copy of the attribution notices contained
  560. within such NOTICE file, excluding those notices that do not
  561. pertain to any part of the Derivative Works, in at least one
  562. of the following places: within a NOTICE text file distributed
  563. as part of the Derivative Works; within the Source form or
  564. documentation, if provided along with the Derivative Works; or,
  565. within a display generated by the Derivative Works, if and
  566. wherever such third-party notices normally appear. The contents
  567. of the NOTICE file are for informational purposes only and
  568. do not modify the License. You may add Your own attribution
  569. notices within Derivative Works that You distribute, alongside
  570. or as an addendum to the NOTICE text from the Work, provided
  571. that such additional attribution notices cannot be construed
  572. as modifying the License.
  573. You may add Your own copyright statement to Your modifications and
  574. may provide additional or different license terms and conditions
  575. for use, reproduction, or distribution of Your modifications, or
  576. for any such Derivative Works as a whole, provided Your use,
  577. reproduction, and distribution of the Work otherwise complies with
  578. the conditions stated in this License.
  579. 5. Submission of Contributions. Unless You explicitly state otherwise,
  580. any Contribution intentionally submitted for inclusion in the Work
  581. by You to the Licensor shall be under the terms and conditions of
  582. this License, without any additional terms or conditions.
  583. Notwithstanding the above, nothing herein shall supersede or modify
  584. the terms of any separate license agreement you may have executed
  585. with Licensor regarding such Contributions.
  586. 6. Trademarks. This License does not grant permission to use the trade
  587. names, trademarks, service marks, or product names of the Licensor,
  588. except as required for reasonable and customary use in describing the
  589. origin of the Work and reproducing the content of the NOTICE file.
  590. 7. Disclaimer of Warranty. Unless required by applicable law or
  591. agreed to in writing, Licensor provides the Work (and each
  592. Contributor provides its Contributions) on an "AS IS" BASIS,
  593. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
  594. implied, including, without limitation, any warranties or conditions
  595. of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
  596. PARTICULAR PURPOSE. You are solely responsible for determining the
  597. appropriateness of using or redistributing the Work and assume any
  598. risks associated with Your exercise of permissions under this License.
  599. 8. Limitation of Liability. In no event and under no legal theory,
  600. whether in tort (including negligence), contract, or otherwise,
  601. unless required by applicable law (such as deliberate and grossly
  602. negligent acts) or agreed to in writing, shall any Contributor be
  603. liable to You for damages, including any direct, indirect, special,
  604. incidental, or consequential damages of any character arising as a
  605. result of this License or out of the use or inability to use the
  606. Work (including but not limited to damages for loss of goodwill,
  607. work stoppage, computer failure or malfunction, or any and all
  608. other commercial damages or losses), even if such Contributor
  609. has been advised of the possibility of such damages.
  610. 9. Accepting Warranty or Additional Liability. While redistributing
  611. the Work or Derivative Works thereof, You may choose to offer,
  612. and charge a fee for, acceptance of support, warranty, indemnity,
  613. or other liability obligations and/or rights consistent with this
  614. License. However, in accepting such obligations, You may act only
  615. on Your own behalf and on Your sole responsibility, not on behalf
  616. of any other Contributor, and only if You agree to indemnify,
  617. defend, and hold each Contributor harmless for any liability
  618. incurred by, or claims asserted against, such Contributor by reason
  619. of your accepting any such warranty or additional liability.
  620. END OF TERMS AND CONDITIONS
  621. APPENDIX: How to apply the Apache License to your work.
  622. To apply the Apache License to your work, attach the following
  623. boilerplate notice, with the fields enclosed by brackets "[]"
  624. replaced with your own identifying information. (Don't include
  625. the brackets!) The text should be enclosed in the appropriate
  626. comment syntax for the file format. We also recommend that a
  627. file or class name and description of purpose be included on the
  628. same "printed page" as the copyright notice for easier
  629. identification within third-party archives.
  630. Copyright [yyyy] [name of copyright owner]
  631. Licensed under the Apache License, Version 2.0 (the "License");
  632. you may not use this file except in compliance with the License.
  633. You may obtain a copy of the License at
  634. http://www.apache.org/licenses/LICENSE-2.0
  635. Unless required by applicable law or agreed to in writing, software
  636. distributed under the License is distributed on an "AS IS" BASIS,
  637. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  638. See the License for the specific language governing permissions and
  639. limitations under the License.
  640. =========================================
  641. END OF @opentelemetry/sdk-trace-base NOTICES AND INFORMATION
  642. %% @vscode/codicons NOTICES AND INFORMATION BEGIN HERE
  643. =========================================
  644. Attribution 4.0 International
  645. =======================================================================
  646. Creative Commons Corporation ("Creative Commons") is not a law firm and
  647. does not provide legal services or legal advice. Distribution of
  648. Creative Commons public licenses does not create a lawyer-client or
  649. other relationship. Creative Commons makes its licenses and related
  650. information available on an "as-is" basis. Creative Commons gives no
  651. warranties regarding its licenses, any material licensed under their
  652. terms and conditions, or any related information. Creative Commons
  653. disclaims all liability for damages resulting from their use to the
  654. fullest extent possible.
  655. Using Creative Commons Public Licenses
  656. Creative Commons public licenses provide a standard set of terms and
  657. conditions that creators and other rights holders may use to share
  658. original works of authorship and other material subject to copyright
  659. and certain other rights specified in the public license below. The
  660. following considerations are for informational purposes only, are not
  661. exhaustive, and do not form part of our licenses.
  662. Considerations for licensors: Our public licenses are
  663. intended for use by those authorized to give the public
  664. permission to use material in ways otherwise restricted by
  665. copyright and certain other rights. Our licenses are
  666. irrevocable. Licensors should read and understand the terms
  667. and conditions of the license they choose before applying it.
  668. Licensors should also secure all rights necessary before
  669. applying our licenses so that the public can reuse the
  670. material as expected. Licensors should clearly mark any
  671. material not subject to the license. This includes other CC-
  672. licensed material, or material used under an exception or
  673. limitation to copyright. More considerations for licensors:
  674. wiki.creativecommons.org/Considerations_for_licensors
  675. Considerations for the public: By using one of our public
  676. licenses, a licensor grants the public permission to use the
  677. licensed material under specified terms and conditions. If
  678. the licensor's permission is not necessary for any reason--for
  679. example, because of any applicable exception or limitation to
  680. copyright--then that use is not regulated by the license. Our
  681. licenses grant only permissions under copyright and certain
  682. other rights that a licensor has authority to grant. Use of
  683. the licensed material may still be restricted for other
  684. reasons, including because others have copyright or other
  685. rights in the material. A licensor may make special requests,
  686. such as asking that all changes be marked or described.
  687. Although not required by our licenses, you are encouraged to
  688. respect those requests where reasonable. More_considerations
  689. for the public:
  690. wiki.creativecommons.org/Considerations_for_licensees
  691. =======================================================================
  692. Creative Commons Attribution 4.0 International Public License
  693. By exercising the Licensed Rights (defined below), You accept and agree
  694. to be bound by the terms and conditions of this Creative Commons
  695. Attribution 4.0 International Public License ("Public License"). To the
  696. extent this Public License may be interpreted as a contract, You are
  697. granted the Licensed Rights in consideration of Your acceptance of
  698. these terms and conditions, and the Licensor grants You such rights in
  699. consideration of benefits the Licensor receives from making the
  700. Licensed Material available under these terms and conditions.
  701. Section 1 -- Definitions.
  702. a. Adapted Material means material subject to Copyright and Similar
  703. Rights that is derived from or based upon the Licensed Material
  704. and in which the Licensed Material is translated, altered,
  705. arranged, transformed, or otherwise modified in a manner requiring
  706. permission under the Copyright and Similar Rights held by the
  707. Licensor. For purposes of this Public License, where the Licensed
  708. Material is a musical work, performance, or sound recording,
  709. Adapted Material is always produced where the Licensed Material is
  710. synched in timed relation with a moving image.
  711. b. Adapter's License means the license You apply to Your Copyright
  712. and Similar Rights in Your contributions to Adapted Material in
  713. accordance with the terms and conditions of this Public License.
  714. c. Copyright and Similar Rights means copyright and/or similar rights
  715. closely related to copyright including, without limitation,
  716. performance, broadcast, sound recording, and Sui Generis Database
  717. Rights, without regard to how the rights are labeled or
  718. categorized. For purposes of this Public License, the rights
  719. specified in Section 2(b)(1)-(2) are not Copyright and Similar
  720. Rights.
  721. d. Effective Technological Measures means those measures that, in the
  722. absence of proper authority, may not be circumvented under laws
  723. fulfilling obligations under Article 11 of the WIPO Copyright
  724. Treaty adopted on December 20, 1996, and/or similar international
  725. agreements.
  726. e. Exceptions and Limitations means fair use, fair dealing, and/or
  727. any other exception or limitation to Copyright and Similar Rights
  728. that applies to Your use of the Licensed Material.
  729. f. Licensed Material means the artistic or literary work, database,
  730. or other material to which the Licensor applied this Public
  731. License.
  732. g. Licensed Rights means the rights granted to You subject to the
  733. terms and conditions of this Public License, which are limited to
  734. all Copyright and Similar Rights that apply to Your use of the
  735. Licensed Material and that the Licensor has authority to license.
  736. h. Licensor means the individual(s) or entity(ies) granting rights
  737. under this Public License.
  738. i. Share means to provide material to the public by any means or
  739. process that requires permission under the Licensed Rights, such
  740. as reproduction, public display, public performance, distribution,
  741. dissemination, communication, or importation, and to make material
  742. available to the public including in ways that members of the
  743. public may access the material from a place and at a time
  744. individually chosen by them.
  745. j. Sui Generis Database Rights means rights other than copyright
  746. resulting from Directive 96/9/EC of the European Parliament and of
  747. the Council of 11 March 1996 on the legal protection of databases,
  748. as amended and/or succeeded, as well as other essentially
  749. equivalent rights anywhere in the world.
  750. k. You means the individual or entity exercising the Licensed Rights
  751. under this Public License. Your has a corresponding meaning.
  752. Section 2 -- Scope.
  753. a. License grant.
  754. 1. Subject to the terms and conditions of this Public License,
  755. the Licensor hereby grants You a worldwide, royalty-free,
  756. non-sublicensable, non-exclusive, irrevocable license to
  757. exercise the Licensed Rights in the Licensed Material to:
  758. a. reproduce and Share the Licensed Material, in whole or
  759. in part; and
  760. b. produce, reproduce, and Share Adapted Material.
  761. 2. Exceptions and Limitations. For the avoidance of doubt, where
  762. Exceptions and Limitations apply to Your use, this Public
  763. License does not apply, and You do not need to comply with
  764. its terms and conditions.
  765. 3. Term. The term of this Public License is specified in Section
  766. 6(a).
  767. 4. Media and formats; technical modifications allowed. The
  768. Licensor authorizes You to exercise the Licensed Rights in
  769. all media and formats whether now known or hereafter created,
  770. and to make technical modifications necessary to do so. The
  771. Licensor waives and/or agrees not to assert any right or
  772. authority to forbid You from making technical modifications
  773. necessary to exercise the Licensed Rights, including
  774. technical modifications necessary to circumvent Effective
  775. Technological Measures. For purposes of this Public License,
  776. simply making modifications authorized by this Section 2(a)
  777. (4) never produces Adapted Material.
  778. 5. Downstream recipients.
  779. a. Offer from the Licensor -- Licensed Material. Every
  780. recipient of the Licensed Material automatically
  781. receives an offer from the Licensor to exercise the
  782. Licensed Rights under the terms and conditions of this
  783. Public License.
  784. b. No downstream restrictions. You may not offer or impose
  785. any additional or different terms or conditions on, or
  786. apply any Effective Technological Measures to, the
  787. Licensed Material if doing so restricts exercise of the
  788. Licensed Rights by any recipient of the Licensed
  789. Material.
  790. 6. No endorsement. Nothing in this Public License constitutes or
  791. may be construed as permission to assert or imply that You
  792. are, or that Your use of the Licensed Material is, connected
  793. with, or sponsored, endorsed, or granted official status by,
  794. the Licensor or others designated to receive attribution as
  795. provided in Section 3(a)(1)(A)(i).
  796. b. Other rights.
  797. 1. Moral rights, such as the right of integrity, are not
  798. licensed under this Public License, nor are publicity,
  799. privacy, and/or other similar personality rights; however, to
  800. the extent possible, the Licensor waives and/or agrees not to
  801. assert any such rights held by the Licensor to the limited
  802. extent necessary to allow You to exercise the Licensed
  803. Rights, but not otherwise.
  804. 2. Patent and trademark rights are not licensed under this
  805. Public License.
  806. 3. To the extent possible, the Licensor waives any right to
  807. collect royalties from You for the exercise of the Licensed
  808. Rights, whether directly or through a collecting society
  809. under any voluntary or waivable statutory or compulsory
  810. licensing scheme. In all other cases the Licensor expressly
  811. reserves any right to collect such royalties.
  812. Section 3 -- License Conditions.
  813. Your exercise of the Licensed Rights is expressly made subject to the
  814. following conditions.
  815. a. Attribution.
  816. 1. If You Share the Licensed Material (including in modified
  817. form), You must:
  818. a. retain the following if it is supplied by the Licensor
  819. with the Licensed Material:
  820. i. identification of the creator(s) of the Licensed
  821. Material and any others designated to receive
  822. attribution, in any reasonable manner requested by
  823. the Licensor (including by pseudonym if
  824. designated);
  825. ii. a copyright notice;
  826. iii. a notice that refers to this Public License;
  827. iv. a notice that refers to the disclaimer of
  828. warranties;
  829. v. a URI or hyperlink to the Licensed Material to the
  830. extent reasonably practicable;
  831. b. indicate if You modified the Licensed Material and
  832. retain an indication of any previous modifications; and
  833. c. indicate the Licensed Material is licensed under this
  834. Public License, and include the text of, or the URI or
  835. hyperlink to, this Public License.
  836. 2. You may satisfy the conditions in Section 3(a)(1) in any
  837. reasonable manner based on the medium, means, and context in
  838. which You Share the Licensed Material. For example, it may be
  839. reasonable to satisfy the conditions by providing a URI or
  840. hyperlink to a resource that includes the required
  841. information.
  842. 3. If requested by the Licensor, You must remove any of the
  843. information required by Section 3(a)(1)(A) to the extent
  844. reasonably practicable.
  845. 4. If You Share Adapted Material You produce, the Adapter's
  846. License You apply must not prevent recipients of the Adapted
  847. Material from complying with this Public License.
  848. Section 4 -- Sui Generis Database Rights.
  849. Where the Licensed Rights include Sui Generis Database Rights that
  850. apply to Your use of the Licensed Material:
  851. a. for the avoidance of doubt, Section 2(a)(1) grants You the right
  852. to extract, reuse, reproduce, and Share all or a substantial
  853. portion of the contents of the database;
  854. b. if You include all or a substantial portion of the database
  855. contents in a database in which You have Sui Generis Database
  856. Rights, then the database in which You have Sui Generis Database
  857. Rights (but not its individual contents) is Adapted Material; and
  858. c. You must comply with the conditions in Section 3(a) if You Share
  859. all or a substantial portion of the contents of the database.
  860. For the avoidance of doubt, this Section 4 supplements and does not
  861. replace Your obligations under this Public License where the Licensed
  862. Rights include other Copyright and Similar Rights.
  863. Section 5 -- Disclaimer of Warranties and Limitation of Liability.
  864. a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE
  865. EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS
  866. AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF
  867. ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS,
  868. IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION,
  869. WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR
  870. PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS,
  871. ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT
  872. KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT
  873. ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU.
  874. b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE
  875. TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION,
  876. NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT,
  877. INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES,
  878. COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR
  879. USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN
  880. ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR
  881. DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR
  882. IN PART, THIS LIMITATION MAY NOT APPLY TO YOU.
  883. c. The disclaimer of warranties and limitation of liability provided
  884. above shall be interpreted in a manner that, to the extent
  885. possible, most closely approximates an absolute disclaimer and
  886. waiver of all liability.
  887. Section 6 -- Term and Termination.
  888. a. This Public License applies for the term of the Copyright and
  889. Similar Rights licensed here. However, if You fail to comply with
  890. this Public License, then Your rights under this Public License
  891. terminate automatically.
  892. b. Where Your right to use the Licensed Material has terminated under
  893. Section 6(a), it reinstates:
  894. 1. automatically as of the date the violation is cured, provided
  895. it is cured within 30 days of Your discovery of the
  896. violation; or
  897. 2. upon express reinstatement by the Licensor.
  898. For the avoidance of doubt, this Section 6(b) does not affect any
  899. right the Licensor may have to seek remedies for Your violations
  900. of this Public License.
  901. c. For the avoidance of doubt, the Licensor may also offer the
  902. Licensed Material under separate terms or conditions or stop
  903. distributing the Licensed Material at any time; however, doing so
  904. will not terminate this Public License.
  905. d. Sections 1, 5, 6, 7, and 8 survive termination of this Public
  906. License.
  907. Section 7 -- Other Terms and Conditions.
  908. a. The Licensor shall not be bound by any additional or different
  909. terms or conditions communicated by You unless expressly agreed.
  910. b. Any arrangements, understandings, or agreements regarding the
  911. Licensed Material not stated herein are separate from and
  912. independent of the terms and conditions of this Public License.
  913. Section 8 -- Interpretation.
  914. a. For the avoidance of doubt, this Public License does not, and
  915. shall not be interpreted to, reduce, limit, restrict, or impose
  916. conditions on any use of the Licensed Material that could lawfully
  917. be made without permission under this Public License.
  918. b. To the extent possible, if any provision of this Public License is
  919. deemed unenforceable, it shall be automatically reformed to the
  920. minimum extent necessary to make it enforceable. If the provision
  921. cannot be reformed, it shall be severed from this Public License
  922. without affecting the enforceability of the remaining terms and
  923. conditions.
  924. c. No term or condition of this Public License will be waived and no
  925. failure to comply consented to unless expressly agreed to by the
  926. Licensor.
  927. d. Nothing in this Public License constitutes or may be interpreted
  928. as a limitation upon, or waiver of, any privileges and immunities
  929. that apply to the Licensor or You, including from the legal
  930. processes of any jurisdiction or authority.
  931. =======================================================================
  932. Creative Commons is not a party to its public
  933. licenses. Notwithstanding, Creative Commons may elect to apply one of
  934. its public licenses to material it publishes and in those instances
  935. will be considered the “Licensor.” The text of the Creative Commons
  936. public licenses is dedicated to the public domain under the CC0 Public
  937. Domain Dedication. Except for the limited purpose of indicating that
  938. material is shared under a Creative Commons public license or as
  939. otherwise permitted by the Creative Commons policies published at
  940. creativecommons.org/policies, Creative Commons does not authorize the
  941. use of the trademark "Creative Commons" or any other trademark or logo
  942. of Creative Commons without its prior written consent including,
  943. without limitation, in connection with any unauthorized modifications
  944. to any of its public licenses or any other arrangements,
  945. understandings, or agreements concerning use of licensed material. For
  946. the avoidance of doubt, this paragraph does not form part of the
  947. public licenses.
  948. Creative Commons may be contacted at creativecommons.org.
  949. =========================================
  950. END OF @vscode/codicons NOTICES AND INFORMATION
  951. %% @vscode/webview-ui-toolkit NOTICES AND INFORMATION BEGIN HERE
  952. =========================================
  953. Copyright (c) Microsoft Corporation.
  954. MIT License
  955. Permission is hereby granted, free of charge, to any person obtaining a copy
  956. of this software and associated documentation files (the "Software"), to deal
  957. in the Software without restriction, including without limitation the rights
  958. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  959. copies of the Software, and to permit persons to whom the Software is
  960. furnished to do so, subject to the following conditions:
  961. The above copyright notice and this permission notice shall be included in all
  962. copies or substantial portions of the Software.
  963. THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  964. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  965. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  966. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  967. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  968. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  969. SOFTWARE.
  970. =========================================
  971. END OF @vscode/webview-ui-toolkit NOTICES AND INFORMATION
  972. %% ansi-regex NOTICES AND INFORMATION BEGIN HERE
  973. =========================================
  974. MIT License
  975. Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
  976. 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:
  977. The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
  978. 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.
  979. =========================================
  980. END OF ansi-regex NOTICES AND INFORMATION
  981. %% billboard.js NOTICES AND INFORMATION BEGIN HERE
  982. =========================================
  983. The MIT License (MIT)
  984. Copyright (c) 2017 ~ present NAVER Corp.
  985. Copyright (c) 2013 Masayuki Tanaka
  986. Permission is hereby granted, free of charge, to any person obtaining a copy of
  987. this software and associated documentation files (the "Software"), to deal in
  988. the Software without restriction, including without limitation the rights to
  989. use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
  990. the Software, and to permit persons to whom the Software is furnished to do so,
  991. subject to the following conditions:
  992. The above copyright notice and this permission notice shall be included in all
  993. copies or substantial portions of the Software.
  994. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  995. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
  996. FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
  997. COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
  998. IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  999. CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  1000. =========================================
  1001. END OF billboard.js NOTICES AND INFORMATION
  1002. %% chroma-js NOTICES AND INFORMATION BEGIN HERE
  1003. =========================================
  1004. chroma.js - JavaScript library for color conversions
  1005. Copyright (c) 2011-2019, Gregor Aisch
  1006. All rights reserved.
  1007. Redistribution and use in source and binary forms, with or without
  1008. modification, are permitted provided that the following conditions are met:
  1009. 1. Redistributions of source code must retain the above copyright notice, this
  1010. list of conditions and the following disclaimer.
  1011. 2. Redistributions in binary form must reproduce the above copyright notice,
  1012. this list of conditions and the following disclaimer in the documentation
  1013. and/or other materials provided with the distribution.
  1014. 3. The name Gregor Aisch may not be used to endorse or promote products
  1015. derived from this software without specific prior written permission.
  1016. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  1017. AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  1018. IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  1019. DISCLAIMED. IN NO EVENT SHALL GREGOR AISCH OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
  1020. INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
  1021. BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  1022. DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
  1023. OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
  1024. NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
  1025. EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  1026. -------------------------------------------------------
  1027. chroma.js includes colors from colorbrewer2.org, which are released under
  1028. the following license:
  1029. Copyright (c) 2002 Cynthia Brewer, Mark Harrower,
  1030. and The Pennsylvania State University.
  1031. Licensed under the Apache License, Version 2.0 (the "License");
  1032. you may not use this file except in compliance with the License.
  1033. You may obtain a copy of the License at
  1034. http://www.apache.org/licenses/LICENSE-2.0
  1035. Unless required by applicable law or agreed to in writing,
  1036. software distributed under the License is distributed on an
  1037. "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
  1038. either express or implied. See the License for the specific
  1039. language governing permissions and limitations under the License.
  1040. ------------------------------------------------------
  1041. Named colors are taken from X11 Color Names.
  1042. http://www.w3.org/TR/css3-color/#svg-color
  1043. @preserve
  1044. =========================================
  1045. END OF chroma-js NOTICES AND INFORMATION
  1046. %% https-proxy-agent NOTICES AND INFORMATION BEGIN HERE
  1047. =========================================
  1048. https-proxy-agent
  1049. ================
  1050. ### An HTTP(s) proxy `http.Agent` implementation for HTTPS
  1051. [![Build Status](https://github.com/TooTallNate/node-https-proxy-agent/workflows/Node%20CI/badge.svg)](https://github.com/TooTallNate/node-https-proxy-agent/actions?workflow=Node+CI)
  1052. This module provides an `http.Agent` implementation that connects to a specified
  1053. HTTP or HTTPS proxy server, and can be used with the built-in `https` module.
  1054. Specifically, this `Agent` implementation connects to an intermediary "proxy"
  1055. server and issues the [CONNECT HTTP method][CONNECT], which tells the proxy to
  1056. open a direct TCP connection to the destination server.
  1057. Since this agent implements the CONNECT HTTP method, it also works with other
  1058. protocols that use this method when connecting over proxies (i.e. WebSockets).
  1059. See the "Examples" section below for more.
  1060. Installation
  1061. ------------
  1062. Install with `npm`:
  1063. ``` bash
  1064. $ npm install https-proxy-agent
  1065. ```
  1066. Examples
  1067. --------
  1068. #### `https` module example
  1069. ``` js
  1070. var url = require('url');
  1071. var https = require('https');
  1072. var HttpsProxyAgent = require('https-proxy-agent');
  1073. // HTTP/HTTPS proxy to connect to
  1074. var proxy = process.env.http_proxy || 'http://168.63.76.32:3128';
  1075. console.log('using proxy server %j', proxy);
  1076. // HTTPS endpoint for the proxy to connect to
  1077. var endpoint = process.argv[2] || 'https://graph.facebook.com/tootallnate';
  1078. console.log('attempting to GET %j', endpoint);
  1079. var options = url.parse(endpoint);
  1080. // create an instance of the `HttpsProxyAgent` class with the proxy server information
  1081. var agent = new HttpsProxyAgent(proxy);
  1082. options.agent = agent;
  1083. https.get(options, function (res) {
  1084. console.log('"response" event!', res.headers);
  1085. res.pipe(process.stdout);
  1086. });
  1087. ```
  1088. #### `ws` WebSocket connection example
  1089. ``` js
  1090. var url = require('url');
  1091. var WebSocket = require('ws');
  1092. var HttpsProxyAgent = require('https-proxy-agent');
  1093. // HTTP/HTTPS proxy to connect to
  1094. var proxy = process.env.http_proxy || 'http://168.63.76.32:3128';
  1095. console.log('using proxy server %j', proxy);
  1096. // WebSocket endpoint for the proxy to connect to
  1097. var endpoint = process.argv[2] || 'ws://echo.websocket.org';
  1098. var parsed = url.parse(endpoint);
  1099. console.log('attempting to connect to WebSocket %j', endpoint);
  1100. // create an instance of the `HttpsProxyAgent` class with the proxy server information
  1101. var options = url.parse(proxy);
  1102. var agent = new HttpsProxyAgent(options);
  1103. // finally, initiate the WebSocket connection
  1104. var socket = new WebSocket(endpoint, { agent: agent });
  1105. socket.on('open', function () {
  1106. console.log('"open" event!');
  1107. socket.send('hello world');
  1108. });
  1109. socket.on('message', function (data, flags) {
  1110. console.log('"message" event! %j %j', data, flags);
  1111. socket.close();
  1112. });
  1113. ```
  1114. API
  1115. ---
  1116. ### new HttpsProxyAgent(Object options)
  1117. The `HttpsProxyAgent` class implements an `http.Agent` subclass that connects
  1118. to the specified "HTTP(s) proxy server" in order to proxy HTTPS and/or WebSocket
  1119. requests. This is achieved by using the [HTTP `CONNECT` method][CONNECT].
  1120. The `options` argument may either be a string URI of the proxy server to use, or an
  1121. "options" object with more specific properties:
  1122. * `host` - String - Proxy host to connect to (may use `hostname` as well). Required.
  1123. * `port` - Number - Proxy port to connect to. Required.
  1124. * `protocol` - String - If `https:`, then use TLS to connect to the proxy.
  1125. * `headers` - Object - Additional HTTP headers to be sent on the HTTP CONNECT method.
  1126. * Any other options given are passed to the `net.connect()`/`tls.connect()` functions.
  1127. License
  1128. -------
  1129. (The MIT License)
  1130. Copyright (c) 2013 Nathan Rajlich &lt;nathan@tootallnate.net&gt;
  1131. Permission is hereby granted, free of charge, to any person obtaining
  1132. a copy of this software and associated documentation files (the
  1133. 'Software'), to deal in the Software without restriction, including
  1134. without limitation the rights to use, copy, modify, merge, publish,
  1135. distribute, sublicense, and/or sell copies of the Software, and to
  1136. permit persons to whom the Software is furnished to do so, subject to
  1137. the following conditions:
  1138. The above copyright notice and this permission notice shall be
  1139. included in all copies or substantial portions of the Software.
  1140. THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
  1141. EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  1142. MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
  1143. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
  1144. CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
  1145. TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
  1146. SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  1147. [CONNECT]: http://en.wikipedia.org/wiki/HTTP_tunnel#HTTP_CONNECT_Tunneling
  1148. =========================================
  1149. END OF https-proxy-agent NOTICES AND INFORMATION
  1150. %% iconv-lite NOTICES AND INFORMATION BEGIN HERE
  1151. =========================================
  1152. Copyright (c) 2011 Alexander Shtuchkin
  1153. Permission is hereby granted, free of charge, to any person obtaining
  1154. a copy of this software and associated documentation files (the
  1155. "Software"), to deal in the Software without restriction, including
  1156. without limitation the rights to use, copy, modify, merge, publish,
  1157. distribute, sublicense, and/or sell copies of the Software, and to
  1158. permit persons to whom the Software is furnished to do so, subject to
  1159. the following conditions:
  1160. The above copyright notice and this permission notice shall be
  1161. included in all copies or substantial portions of the Software.
  1162. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  1163. EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  1164. MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  1165. NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
  1166. LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  1167. OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  1168. WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  1169. =========================================
  1170. END OF iconv-lite NOTICES AND INFORMATION
  1171. %% lit NOTICES AND INFORMATION BEGIN HERE
  1172. =========================================
  1173. BSD 3-Clause License
  1174. Copyright (c) 2017 Google LLC. All rights reserved.
  1175. Redistribution and use in source and binary forms, with or without
  1176. modification, are permitted provided that the following conditions are met:
  1177. 1. Redistributions of source code must retain the above copyright notice, this
  1178. list of conditions and the following disclaimer.
  1179. 2. Redistributions in binary form must reproduce the above copyright notice,
  1180. this list of conditions and the following disclaimer in the documentation
  1181. and/or other materials provided with the distribution.
  1182. 3. Neither the name of the copyright holder nor the names of its
  1183. contributors may be used to endorse or promote products derived from
  1184. this software without specific prior written permission.
  1185. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  1186. AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  1187. IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  1188. DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
  1189. FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  1190. DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  1191. SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
  1192. CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  1193. OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  1194. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  1195. =========================================
  1196. END OF lit NOTICES AND INFORMATION
  1197. %% lodash-es NOTICES AND INFORMATION BEGIN HERE
  1198. =========================================
  1199. Copyright OpenJS Foundation and other contributors <https://openjsf.org/>
  1200. Based on Underscore.js, copyright Jeremy Ashkenas,
  1201. DocumentCloud and Investigative Reporters & Editors <http://underscorejs.org/>
  1202. This software consists of voluntary contributions made by many
  1203. individuals. For exact contribution history, see the revision history
  1204. available at https://github.com/lodash/lodash
  1205. The following license applies to all parts of this software except as
  1206. documented below:
  1207. ====
  1208. Permission is hereby granted, free of charge, to any person obtaining
  1209. a copy of this software and associated documentation files (the
  1210. "Software"), to deal in the Software without restriction, including
  1211. without limitation the rights to use, copy, modify, merge, publish,
  1212. distribute, sublicense, and/or sell copies of the Software, and to
  1213. permit persons to whom the Software is furnished to do so, subject to
  1214. the following conditions:
  1215. The above copyright notice and this permission notice shall be
  1216. included in all copies or substantial portions of the Software.
  1217. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  1218. EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  1219. MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  1220. NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
  1221. LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  1222. OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  1223. WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  1224. ====
  1225. Copyright and related rights for sample code are waived via CC0. Sample
  1226. code is defined as all source code displayed within the prose of the
  1227. documentation.
  1228. CC0: http://creativecommons.org/publicdomain/zero/1.0/
  1229. ====
  1230. Files located in the node_modules and vendor directories are externally
  1231. maintained libraries used by this software which have their own
  1232. licenses; we recommend you read them, as their terms may differ from the
  1233. terms above.
  1234. =========================================
  1235. END OF lodash-es NOTICES AND INFORMATION
  1236. %% md5.js NOTICES AND INFORMATION BEGIN HERE
  1237. =========================================
  1238. The MIT License (MIT)
  1239. Copyright (c) 2016 Kirill Fomichev
  1240. Permission is hereby granted, free of charge, to any person obtaining a copy
  1241. of this software and associated documentation files (the "Software"), to deal
  1242. in the Software without restriction, including without limitation the rights
  1243. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  1244. copies of the Software, and to permit persons to whom the Software is
  1245. furnished to do so, subject to the following conditions:
  1246. The above copyright notice and this permission notice shall be included in
  1247. all copies or substantial portions of the Software.
  1248. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  1249. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  1250. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  1251. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  1252. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  1253. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  1254. THE SOFTWARE.
  1255. =========================================
  1256. END OF md5.js NOTICES AND INFORMATION
  1257. %% microsoft/vscode NOTICES AND INFORMATION BEGIN HERE
  1258. =========================================
  1259. MIT License
  1260. Copyright (c) 2015 - present Microsoft Corporation
  1261. Permission is hereby granted, free of charge, to any person obtaining a copy
  1262. of this software and associated documentation files (the "Software"), to deal
  1263. in the Software without restriction, including without limitation the rights
  1264. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  1265. copies of the Software, and to permit persons to whom the Software is
  1266. furnished to do so, subject to the following conditions:
  1267. The above copyright notice and this permission notice shall be included in all
  1268. copies or substantial portions of the Software.
  1269. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  1270. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  1271. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  1272. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  1273. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  1274. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  1275. SOFTWARE.
  1276. =========================================
  1277. END OF microsoft/vscode NOTICES AND INFORMATION
  1278. %% node-fetch NOTICES AND INFORMATION BEGIN HERE
  1279. =========================================
  1280. The MIT License (MIT)
  1281. Copyright (c) 2016 David Frank
  1282. Permission is hereby granted, free of charge, to any person obtaining a copy
  1283. of this software and associated documentation files (the "Software"), to deal
  1284. in the Software without restriction, including without limitation the rights
  1285. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  1286. copies of the Software, and to permit persons to whom the Software is
  1287. furnished to do so, subject to the following conditions:
  1288. The above copyright notice and this permission notice shall be included in all
  1289. copies or substantial portions of the Software.
  1290. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  1291. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  1292. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  1293. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  1294. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  1295. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  1296. SOFTWARE.
  1297. =========================================
  1298. END OF node-fetch NOTICES AND INFORMATION
  1299. %% os-browserify NOTICES AND INFORMATION BEGIN HERE
  1300. =========================================
  1301. The MIT License (MIT)
  1302. Copyright (c) 2017 CoderPuppy
  1303. Permission is hereby granted, free of charge, to any person obtaining a copy
  1304. of this software and associated documentation files (the "Software"), to deal
  1305. in the Software without restriction, including without limitation the rights
  1306. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  1307. copies of the Software, and to permit persons to whom the Software is
  1308. furnished to do so, subject to the following conditions:
  1309. The above copyright notice and this permission notice shall be included in all
  1310. copies or substantial portions of the Software.
  1311. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  1312. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  1313. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  1314. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  1315. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  1316. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  1317. SOFTWARE.
  1318. =========================================
  1319. END OF os-browserify NOTICES AND INFORMATION
  1320. %% path-browserify NOTICES AND INFORMATION BEGIN HERE
  1321. =========================================
  1322. MIT License
  1323. Copyright (c) 2013 James Halliday
  1324. Permission is hereby granted, free of charge, to any person obtaining a copy of
  1325. this software and associated documentation files (the "Software"), to deal in
  1326. the Software without restriction, including without limitation the rights to
  1327. use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
  1328. the Software, and to permit persons to whom the Software is furnished to do so,
  1329. subject to the following conditions:
  1330. The above copyright notice and this permission notice shall be included in all
  1331. copies or substantial portions of the Software.
  1332. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  1333. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
  1334. FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
  1335. COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
  1336. IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  1337. CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  1338. =========================================
  1339. END OF path-browserify NOTICES AND INFORMATION
  1340. %% react-dom NOTICES AND INFORMATION BEGIN HERE
  1341. =========================================
  1342. MIT License
  1343. Copyright (c) Facebook, Inc. and its affiliates.
  1344. Permission is hereby granted, free of charge, to any person obtaining a copy
  1345. of this software and associated documentation files (the "Software"), to deal
  1346. in the Software without restriction, including without limitation the rights
  1347. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  1348. copies of the Software, and to permit persons to whom the Software is
  1349. furnished to do so, subject to the following conditions:
  1350. The above copyright notice and this permission notice shall be included in all
  1351. copies or substantial portions of the Software.
  1352. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  1353. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  1354. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  1355. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  1356. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  1357. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  1358. SOFTWARE.
  1359. =========================================
  1360. END OF react-dom NOTICES AND INFORMATION
  1361. %% react NOTICES AND INFORMATION BEGIN HERE
  1362. =========================================
  1363. MIT License
  1364. Copyright (c) Facebook, Inc. and its affiliates.
  1365. Permission is hereby granted, free of charge, to any person obtaining a copy
  1366. of this software and associated documentation files (the "Software"), to deal
  1367. in the Software without restriction, including without limitation the rights
  1368. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  1369. copies of the Software, and to permit persons to whom the Software is
  1370. furnished to do so, subject to the following conditions:
  1371. The above copyright notice and this permission notice shall be included in all
  1372. copies or substantial portions of the Software.
  1373. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  1374. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  1375. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  1376. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  1377. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  1378. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  1379. SOFTWARE.
  1380. =========================================
  1381. END OF react NOTICES AND INFORMATION
  1382. %% sindresorhus/is-fullwidth-code-point NOTICES AND INFORMATION BEGIN HERE
  1383. =========================================
  1384. MIT License
  1385. Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
  1386. 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:
  1387. The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
  1388. 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.
  1389. =========================================
  1390. END OF sindresorhus/is-fullwidth-code-point NOTICES AND INFORMATION
  1391. %% sindresorhus/string-width NOTICES AND INFORMATION BEGIN HERE
  1392. =========================================
  1393. MIT License
  1394. Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
  1395. 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:
  1396. The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
  1397. 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.
  1398. =========================================
  1399. END OF sindresorhus/string-width NOTICES AND INFORMATION
  1400. %% sortablejs NOTICES AND INFORMATION BEGIN HERE
  1401. =========================================
  1402. MIT License
  1403. Copyright (c) 2019 All contributors to Sortable
  1404. Permission is hereby granted, free of charge, to any person obtaining a copy
  1405. of this software and associated documentation files (the "Software"), to deal
  1406. in the Software without restriction, including without limitation the rights
  1407. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  1408. copies of the Software, and to permit persons to whom the Software is
  1409. furnished to do so, subject to the following conditions:
  1410. The above copyright notice and this permission notice shall be included in all
  1411. copies or substantial portions of the Software.
  1412. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  1413. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  1414. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  1415. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  1416. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  1417. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  1418. SOFTWARE.
  1419. =========================================
  1420. END OF sortablejs NOTICES AND INFORMATION