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.

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